Hello,
i'm using this code:
void myMessageOutput(QtMsgType type, const char *msg)
{
switch (type) {
case QtFatalMsg:
// how to launch here default QT message handler, which would work, if i
would not used myMessageOutput?
}
}
int main( int argc, char ** argv )
{
qtMsgHandler = qInstallMsgHandler(myMessageOutput);
Thank you!