alcon
alcon

Reputation: 123

visual studio profiling performance

My C++ program runs perfectly in release and debug mode. However, when I try to profile my code using Visual studio 2010 performance analysis. My program starts up but immediately gives the following error:

The procedure entry point ?minimumSizeHint@QcheckBox@@UBE?AVQSize@@XZ could not be located in the dynamic link library QtGuid4.dll.

I find it strange that it has problems with the dll whereas in release+debug it works perfectly. Has anyone an idea what this could be?

Upvotes: 0

Views: 741

Answers (1)

Michael Simbirsky
Michael Simbirsky

Reputation: 3103

According to Qt compatibility report, the function QcheckBox::minimumSizeHint was added between 4.7.4 and 4.8.0.

Most likely somehow part of your DLLs are 4.8.x while QtGui is 4.7.x.

Upvotes: 1

Related Questions