Changeset 174 for trunk/src/kernel/qapplication.cpp
- Timestamp:
- Nov 6, 2007, 11:27:57 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel/qapplication.cpp
r172 r174 1235 1235 else 1236 1236 style = "Windows"; // default styles for Windows 1237 #elif defined(Q_WS_PM) 1238 /// @todo (dmik) temporary, until the native style is done 1239 style = "Windows"; // default style for OS/2 1237 // this is temporarily disabled until most bugs are fixed, 1238 // see http://svn.netlabs.org/qr3/ticket/9 for details 1239 //#elif defined(Q_WS_PM) 1240 // style = "Warp4"; // default style for OS/2 1241 //#endif 1240 1242 #elif defined(Q_WS_X11) && defined(Q_OS_SOLARIS) 1241 1243 style = "CDE"; // default style for X11 on Solaris … … 1253 1255 if ( !app_style && // platform default style not available, try alternatives 1254 1256 !(app_style = QStyleFactory::create( "Windows" ) ) && 1257 // !(app_style = QStyleFactory::create( "Warp4" ) ) && 1255 1258 !(app_style = QStyleFactory::create( "Platinum" ) ) && 1256 1259 !(app_style = QStyleFactory::create( "MotifPlus" ) ) && … … 1370 1373 The string must be one of the QStyleFactory::keys(), typically one 1371 1374 of "windows", "motif", "cde", "motifplus", "platinum", "sgi" and 1372 "compact". Depending on the platform, "windowsxp", " aqua" or1375 "compact". Depending on the platform, "windowsxp", "warp4", "aqua" or 1373 1376 "macintosh" may be available. 1374 1377
Note:
See TracChangeset
for help on using the changeset viewer.