Qt project developed in Windows not working properly in Unix
I developed a Qt project in windows using Qt Creator 2.3.0
Based on Qt 4.7.4 (32 bit).....
I tried to buit the same project in Unix, which was using Qt 4.4.3... (i cant upgrade this..)
I got error for the following lines...
Code:
ui->tabWidget_unfiltered->setTabsClosable(true);
Code:
ui->lineEdit_directory->setText(path);
Code:
stringList.removeDuplicates();
when i removed those statements, it executed.....
Now what should i need to do...inorder to get all those features in Unix..
Re: Qt project developed in Windows not working properly in Unix
Assuming that lineEdit_directory is a QLineEdit and path is a QString then this line is absolutely correct.
For the other two use a version of Qt that includes these features or code them yourself:
You can, of course, build your own local copy of Qt 4.8 on the Linux box and deploy your application with the relevant libraries.