Changeset 769 for trunk/src/gui/kernel/qapplication.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/kernel/qapplication.cpp
r651 r769 139 139 QT_BEGIN_NAMESPACE 140 140 141 extern void qt_call_post_routines();141 Q_DECL_IMPORT extern void qt_call_post_routines(); 142 142 143 143 int QApplicationPrivate::app_compile_version = 0x040000; //we don't know exactly, but it's at least 4.0.0 … … 895 895 QWidgetPrivate::mapper = new QWidgetMapper; 896 896 QWidgetPrivate::allWidgets = new QWidgetSet; 897 898 #if !defined(Q_WS_X11) && !defined(Q_WS_QWS) 899 // initialize the graphics system - on X11 this is initialized inside 900 // qt_init() in qapplication_x11.cpp because of several reasons. 901 // On QWS, the graphics system is set by the QScreen plugin. 902 graphics_system = QGraphicsSystemFactory::create(graphics_system_name); 903 #endif 904 897 905 if (qt_appType != QApplication::Tty) 898 906 (void) QApplication::style(); // trigger creation of application style … … 929 937 qInitDrawhelperAsm(); 930 938 931 #if !defined(Q_WS_X11) && !defined(Q_WS_QWS)932 // initialize the graphics system - on X11 this is initialized inside933 // qt_init() in qapplication_x11.cpp because of several reasons.934 // On QWS, the graphics system is set by the QScreen plugin.935 graphics_system = QGraphicsSystemFactory::create(graphics_system_name);936 #endif937 939 #ifndef QT_NO_WHEELEVENT 938 940 QApplicationPrivate::wheel_scroll_lines = 3;
Note:
See TracChangeset
for help on using the changeset viewer.