I have done the following:
Created a new empty QT project.
Added a source file.
#include <QPixmap>
int main(int argC,char** argV)
{
}
#include <QPixmap>
int main(int argC,char** argV)
{
QPixmap("D:\new.png");
}
To copy to clipboard, switch view to plain text mode
This results in:
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
I am hoping someone can help me figure out how to resolve this issue. I have had it on a much larger scale and been able to work out that the error occurs with even the smallest of scales, as seen above. What would cause such a crash when using QPixmap?
Bookmarks