Skip to content

Commit a1243d5

Browse files
committedMar 18, 2016
Merge pull request #2924 from nyalldawson/qt5_fix
Fix compilation on Qt5 versions < 5.5
2 parents 68f0e83 + 6ea7368 commit a1243d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ void myMessageOutput( QtMsgType type, const char *msg )
399399
}
400400

401401

402-
#if QT_VERSION >= 0x050000
402+
#if QT_VERSION >= 0x050500
403403
case QtInfoMsg:
404404
myPrint( "Info: %s\n", msg );
405405
break;

0 commit comments

Comments
 (0)
Please sign in to comment.