Hello,
i did port my app yesterday.
My mistake was: i did import the old qwt 4.5 build settings.\\
So: Do not import them, run qmake + clean all and rebuild all\\
this fixed my first error..
second error see was:
QString Dir
= G_cWorkSpace.
fiModelsDirectory.
absoluteFilePath();
//caused the error Dir = G_cWorkSpace.fiModelsDirectory.absoluteFilePath(); //fixed the error
QString Dir = G_cWorkSpace.fiModelsDirectory.absoluteFilePath(); //caused the error
QString Dir;
Dir = G_cWorkSpace.fiModelsDirectory.absoluteFilePath(); //fixed the error
To copy to clipboard, switch view to plain text mode
maybe try:
srcImage.Set with the correct function.... ( ":/topLeft.png" );
destImage.Set with the correct function... (640, 480);
QPixmap srcImage;
srcImage.Set with the correct function.... ( ":/topLeft.png" );
QPixmap destImage;
destImage.Set with the correct function... (640, 480);
To copy to clipboard, switch view to plain text mode
greetz A.
Bookmarks