diff options
author | axis <qt-info@nokia.com> | 2009-05-11 11:45:37 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-05-11 12:51:15 (GMT) |
commit | cca5c6b033c23d4e153032012e8279bbcce74728 (patch) | |
tree | 17c6239e325e54c37c9adf0496861947742381aa /src/gui/kernel/qapplication.h | |
parent | cad2b43b14d676e6afe968a11aa9dfcf6f8be9eb (diff) | |
download | Qt-cca5c6b033c23d4e153032012e8279bbcce74728.zip Qt-cca5c6b033c23d4e153032012e8279bbcce74728.tar.gz Qt-cca5c6b033c23d4e153032012e8279bbcce74728.tar.bz2 |
Make autoSipEnabled available on all platforms.
This is relevant on S60 too, so it's time to make it cross platform.
RevBy: mauricek
Diffstat (limited to 'src/gui/kernel/qapplication.h')
-rw-r--r-- | src/gui/kernel/qapplication.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h index 15066da..afe5fa5 100644 --- a/src/gui/kernel/qapplication.h +++ b/src/gui/kernel/qapplication.h @@ -111,8 +111,8 @@ class Q_GUI_EXPORT QApplication : public QCoreApplication #endif #ifdef Q_OS_WINCE Q_PROPERTY(int autoMaximizeThreshold READ autoMaximizeThreshold WRITE setAutoMaximizeThreshold) - Q_PROPERTY(bool autoSipEnabled READ autoSipEnabled WRITE setAutoSipEnabled) #endif + Q_PROPERTY(bool autoSipEnabled READ autoSipEnabled WRITE setAutoSipEnabled) public: enum Type { Tty, GuiClient, GuiServer }; @@ -298,9 +298,9 @@ public Q_SLOTS: #ifdef Q_OS_WINCE void setAutoMaximizeThreshold(const int threshold); int autoMaximizeThreshold() const; +#endif void setAutoSipEnabled(const bool enabled); bool autoSipEnabled() const; -#endif static void closeAllWindows(); static void aboutQt(); |