diff options
author | axis <qt-info@nokia.com> | 2009-05-11 11:48:05 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-05-11 12:51:17 (GMT) |
commit | 58927cf98f94a9b300845cb631ebace303a6050f (patch) | |
tree | 2aba526369b781ea5bb5fc7f991e13357bae8f55 /src/gui/kernel/qapplication.h | |
parent | 3861672c358d7180bce13af53e82df2b0617c7d4 (diff) | |
download | Qt-58927cf98f94a9b300845cb631ebace303a6050f.zip Qt-58927cf98f94a9b300845cb631ebace303a6050f.tar.gz Qt-58927cf98f94a9b300845cb631ebace303a6050f.tar.bz2 |
Make autoSipOnMouseFocus non-static.
This way we are consistent with autoSipEnabled.
Diffstat (limited to 'src/gui/kernel/qapplication.h')
-rw-r--r-- | src/gui/kernel/qapplication.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h index afe5fa5..ca0eb98 100644 --- a/src/gui/kernel/qapplication.h +++ b/src/gui/kernel/qapplication.h @@ -201,9 +201,6 @@ public: static void setKeyboardInputInterval(int); static int keyboardInputInterval(); - static void setAutoSipOnMouseFocus(bool); - static bool autoSipOnMouseFocus(); - #ifndef QT_NO_WHEELEVENT static void setWheelScrollLines(int); static int wheelScrollLines(); @@ -301,6 +298,8 @@ public Q_SLOTS: #endif void setAutoSipEnabled(const bool enabled); bool autoSipEnabled() const; + void setAutoSipOnMouseFocus(bool); + bool autoSipOnMouseFocus(); static void closeAllWindows(); static void aboutQt(); |