Hi,
I try to run my app in windows 7 using Qt Designer but i have this error in the console, what is it?!
Teste.exe exited with code -1073741819
Thanks
Hi,
I try to run my app in windows 7 using Qt Designer but i have this error in the console, what is it?!
Teste.exe exited with code -1073741819
Thanks
If this post is correct, the reason of my error is an incorrect way to create an object, but looking a bit my code, I cannot find the error:
Here's the code:
Error function
Qt Code:
void Joint::addVertex(double x, double y, double z) { Vertex v; v.x = x; v.y = y; v.z = z; qDebug() << "Checkpoint 20" << v.x << v.y << v.z <<endl; vertexVector.push_back(v); }To copy to clipboard, switch view to plain text mode
header of the object Vertex
Qt Code:
#ifndef VERTEX_H #define VERTEX_H class Vertex { public: Vertex(); double x,y,z; //coordonnées }; #endif // VERTEX_HTo copy to clipboard, switch view to plain text mode
Declaration of vertexVector:
Qt Code:
private: std::vector<Vertex> vertexVector;To copy to clipboard, switch view to plain text mode
I check in google like you told me
http://blogs.msdn.com/b/calvin_hsia/...30/170344.aspx
With the post and the help of qDebug() I find the place where the error takes place.
Bookmarks