diff options
author | Jason Barron <jbarron@trolltech.com> | 2010-04-20 07:59:27 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2010-04-21 07:40:58 (GMT) |
commit | 199caad8812128636a76816e931d24dcd2007af6 (patch) | |
tree | 86027a9d51183d207bdb34d2b8d7a3758249e51c /src/gui/kernel/qapplication_s60.cpp | |
parent | 713910ac67da8ba4b96fc6fb0e350676fbd730d3 (diff) | |
download | Qt-199caad8812128636a76816e931d24dcd2007af6.zip Qt-199caad8812128636a76816e931d24dcd2007af6.tar.gz Qt-199caad8812128636a76816e931d24dcd2007af6.tar.bz2 |
Delay creation of S60 screen furniture.
Previously the S60 screen furniture (Status Pane and CBA) was being
constructed when QApplication was constructed. This meant that if you
never created a widget, you would still get those app panes which is
not what we want.
This patch avoids constructing these panes in QApplication, and manually
creates them later when the first window is shown in a state where they
would be needed.
Reviewed-by: Janne Anttila
Reviewed-by: mread
Diffstat (limited to 'src/gui/kernel/qapplication_s60.cpp')
-rw-r--r-- | src/gui/kernel/qapplication_s60.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index 61beb4f..41ae294 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -73,6 +73,7 @@ # endif # include <private/qs60mainapplication_p.h> # include <centralrepository.h> +# include "qs60mainappui.h" #endif #include "private/qstylesheetstyle_p.h" |