Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2924 from nyalldawson/qt5_fix
Fix compilation on Qt5 versions < 5.5
  • Loading branch information
m-kuhn committed Mar 18, 2016
2 parents 68f0e83 + 6ea7368 commit a1243d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/main.cpp
Expand Up @@ -399,7 +399,7 @@ void myMessageOutput( QtMsgType type, const char *msg )
}


#if QT_VERSION >= 0x050000
#if QT_VERSION >= 0x050500
case QtInfoMsg:
myPrint( "Info: %s\n", msg );
break;
Expand Down

0 comments on commit a1243d5

Please sign in to comment.