diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-04-24 09:21:42 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-04-24 09:21:42 (GMT) |
commit | d6aa7692aaeba9b08534eb9ecd16760a5377d4b9 (patch) | |
tree | 3ad4144fd8586f46e3e0fcad8abded9532f9063d /src/gui/kernel/qapplication.cpp | |
parent | 2bfde77e07c1de1866a1d171fc5dc5c584618e8e (diff) | |
parent | 3ab7dc5d764d41bf828dd76672ca2918b004bad3 (diff) | |
download | Qt-d6aa7692aaeba9b08534eb9ecd16760a5377d4b9.zip Qt-d6aa7692aaeba9b08534eb9ecd16760a5377d4b9.tar.gz Qt-d6aa7692aaeba9b08534eb9ecd16760a5377d4b9.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt into windows-7-multitouch
Diffstat (limited to 'src/gui/kernel/qapplication.cpp')
-rw-r--r-- | src/gui/kernel/qapplication.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 6755ffd..4e61f66 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -108,9 +108,6 @@ static void initResources() Q_INIT_RESOURCE(qstyle); #endif -#if !defined(QT_NO_DIRECT3D) && defined(Q_WS_WIN) - Q_INIT_RESOURCE(qpaintengine_d3d); -#endif Q_INIT_RESOURCE(qmessagebox); #if !defined(QT_NO_PRINTDIALOG) Q_INIT_RESOURCE(qprintdialog); @@ -621,13 +618,6 @@ void QApplicationPrivate::process_cmdline() and QPixmaps. Available options are \c{raster} and \c{opengl}. \endlist - The Windows version of Qt supports an additional command line option, if - Direct3D support has been compiled into Qt: - \list - \o -direct3d will make the Direct3D paint engine the default widget - paint engine in Qt. \bold {This functionality is experimental.} - \endlist - The X11 version of Qt supports some traditional X11 command line options: \list \o -display \e display, sets the X display (default is $DISPLAY). @@ -3500,7 +3490,7 @@ void QApplication::changeOverrideCursor(const QCursor &cursor) It is necessary to call this function to start event handling. The main event loop receives events from the window system and dispatches these to the application widgets. - + Generally, no user interaction can take place before calling exec(). As a special case, modal widgets like QMessageBox can be used before calling exec(), because modal widgets call exec() to start a local event loop. |