Hello Lesiok,
Thanks for your response.
Is the init process is the constructor ?
No.
ui(new Ui::noobsForm)
{
...
...
initInst();
}
void noobsForm::initInst()
{
...
...
delay(1000); //process events
qDebug() << "passed letter" << (driveLetter + ":");
emit doGetFileCount(driveLetter + ":");
...
...
}
noobsForm::noobsForm(QStringList passedDataList, QString fileName,
QWidget *parent) : QDialog(parent),
ui(new Ui::noobsForm)
{
...
...
initInst();
}
void noobsForm::initInst()
{
...
...
delay(1000); //process events
qDebug() << "passed letter" << (driveLetter + ":");
emit doGetFileCount(driveLetter + ":");
...
...
}
To copy to clipboard, switch view to plain text mode
Bookmarks