Fix QT version in a comment for wxPORT_QT

No real changes.
This commit is contained in:
Vadim Zeitlin
2019-09-18 02:17:21 +02:00
parent f45a53308e
commit 8ed487923d
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ enum wxPortId
wxPORT_OSX = wxPORT_MAC, // wxOSX, using Cocoa or iPhone API
wxPORT_COCOA = 1 << 8, // wxCocoa, using Cocoa NextStep/Mac API
wxPORT_WINCE = 1 << 9, // obsolete
wxPORT_QT = 1 << 10 // wxQT, using QT4
wxPORT_QT = 1 << 10 // wxQT, using Qt 5+
};
// architecture of the operating system

View File

@@ -69,7 +69,7 @@ enum wxPortId
wxPORT_X11 = 1 << 5, //!< wxX11, using wxUniversal
wxPORT_MAC = 1 << 7, //!< wxMac, using Carbon or Classic Mac API
wxPORT_COCOA = 1 << 8, //!< wxCocoa, using Cocoa NextStep/Mac API
wxPORT_QT = 1 << 10 //!< wxQT, using QT4
wxPORT_QT = 1 << 10 //!< wxQT, using Qt 5+
};