diff options
-rw-r--r-- | src/core/kauthorized.h | 3 | ||||
-rw-r--r-- | src/gui/kconfiggui.h | 3 | ||||
-rw-r--r-- | src/gui/kstandardshortcut.h | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/core/kauthorized.h b/src/core/kauthorized.h index ac3cfa7e..a61e0927 100644 --- a/src/core/kauthorized.h +++ b/src/core/kauthorized.h @@ -110,8 +110,9 @@ KCONFIGCORE_EXPORT bool authorizeAction(const QString &action); * @see authorize() * @deprecated since 5.24, use authorizeAction() instead. */ +KCONFIGCORE_EXPORT KCONFIGCORE_DEPRECATED_VERSION(5, 24, "Use KAuthorized::authorizeAction(const QString&)") -KCONFIGCORE_EXPORT bool authorizeKAction(const QString &action); +bool authorizeKAction(const QString &action); #endif /** diff --git a/src/gui/kconfiggui.h b/src/gui/kconfiggui.h index c32e108f..8f4b739a 100644 --- a/src/gui/kconfiggui.h +++ b/src/gui/kconfiggui.h @@ -53,8 +53,9 @@ KCONFIGGUI_EXPORT bool hasSessionConfig(); * @return the application session name * @deprecated since 5.11, use sessionConfig()->name() */ +KCONFIGGUI_EXPORT KCONFIGGUI_DEPRECATED_VERSION(5, 11, "Use KConfigGui::sessionConfig()->name()") -KCONFIGGUI_EXPORT QString sessionConfigName(); +QString sessionConfigName(); #endif } diff --git a/src/gui/kstandardshortcut.h b/src/gui/kstandardshortcut.h index 305cf8ed..7986486a 100644 --- a/src/gui/kstandardshortcut.h +++ b/src/gui/kstandardshortcut.h @@ -211,8 +211,9 @@ KCONFIGGUI_EXPORT StandardShortcut find(const QKeySequence &keySeq); * is none * @deprecated since 5.71, use findByName(const QString &name) instead */ +KCONFIGGUI_EXPORT KCONFIGGUI_DEPRECATED_VERSION(5, 71, "Use findByName(const QString &name) instead") -KCONFIGGUI_EXPORT StandardShortcut find(const char *keyName); +StandardShortcut find(const char *keyName); #endif /** |