You can paste some qDebugs in your code (for example at the first lines of each suspected method with Q_FUNC_INFO, __FILE__ and __LINE__):
qDebug() << Q_FUNC_INFO; // prints full method name
qDebug() << "file:" << __FILE__ << " line:" << __LINE__; // prints file and line where this code is
qDebug() << Q_FUNC_INFO; // prints full method name
qDebug() << "file:" << __FILE__ << " line:" << __LINE__; // prints file and line where this code is
To copy to clipboard, switch view to plain text mode
then you can maybe find when those QPainter warnings are printed.
Bookmarks