How to force call of lineEdit’s textChanged at startup?
The workaround is:
MainWindow::MainWindow(QWidget *parent) :
...
QString s = ui->vectorEdit->text()+" ";
ui->vectorEdit->setText(s);
How to do it properly? And without adding a space.
↧