diff options
author | Michele Calgaro <[email protected]> | 2024-05-14 12:36:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-14 12:36:29 +0900 |
commit | 43e38f2c0a00cdc052660fab01d32df2c7dc24b0 (patch) | |
tree | 308e002242744bef1db7382e8910a470932f3d12 /tdeutils | |
parent | 562773a5f7befb7eac57e57d928cf223a82f97f0 (diff) | |
download | tdelibs-43e38f2c0a00cdc052660fab01d32df2c7dc24b0.tar.gz tdelibs-43e38f2c0a00cdc052660fab01d32df2c7dc24b0.zip |
Replace KDE_DEPRECATED with TDE_DEPRECATED
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeutils')
-rw-r--r-- | tdeutils/kcmultidialog.h | 2 | ||||
-rw-r--r-- | tdeutils/tdecmoduleinfo.h | 2 | ||||
-rw-r--r-- | tdeutils/tdecmoduleloader.h | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tdeutils/kcmultidialog.h b/tdeutils/kcmultidialog.h index 89aedf0a5..2226eaf0d 100644 --- a/tdeutils/kcmultidialog.h +++ b/tdeutils/kcmultidialog.h @@ -102,7 +102,7 @@ public: KCMultiDialog( int dialogFace, const KGuiItem &user2, const KGuiItem &user3=KGuiItem(), int buttonMask=User2, const TQString &caption=i18n("Configure"), TQWidget *parent=0, - const char *name=0, bool modal=false ) KDE_DEPRECATED; + const char *name=0, bool modal=false ) TDE_DEPRECATED; // KDE4 remove the user3 argument, and instead initialize it to KStdGuiItem::adminMode. /** diff --git a/tdeutils/tdecmoduleinfo.h b/tdeutils/tdecmoduleinfo.h index 634dacace..563d8b677 100644 --- a/tdeutils/tdecmoduleinfo.h +++ b/tdeutils/tdecmoduleinfo.h @@ -176,7 +176,7 @@ public: * @deprecated * @return the isHiddenByDefault attribute. */ - bool isHiddenByDefault() const KDE_DEPRECATED; + bool isHiddenByDefault() const TDE_DEPRECATED; /** diff --git a/tdeutils/tdecmoduleloader.h b/tdeutils/tdecmoduleloader.h index a96d23e66..7b93d3498 100644 --- a/tdeutils/tdecmoduleloader.h +++ b/tdeutils/tdecmoduleloader.h @@ -62,7 +62,7 @@ class TDEUTILS_EXPORT TDECModuleLoader */ static TDECModule *loadModule(const TDECModuleInfo &module, bool withFallback=true, TQWidget * parent = 0, const char * name = 0, - const TQStringList & args = TQStringList() ) KDE_DEPRECATED; + const TQStringList & args = TQStringList() ) TDE_DEPRECATED; /** * Loads a @ref TDECModule. If loading fails a zero pointer is returned. @@ -76,7 +76,7 @@ class TDEUTILS_EXPORT TDECModuleLoader * method */ static TDECModule *loadModule(const TQString &module, TQWidget *parent = 0, - const char *name = 0, const TQStringList & args = TQStringList()) KDE_DEPRECATED; + const char *name = 0, const TQStringList & args = TQStringList()) TDE_DEPRECATED; /** * Determines the way errors are reported @@ -147,7 +147,7 @@ class TDEUTILS_EXPORT TDECModuleLoader * @deprecated Use a constructor with ErrorReporting set to Dialog to show a * message box like this function did. */ - static void showLastLoaderError(TQWidget *parent) KDE_DEPRECATED; + static void showLastLoaderError(TQWidget *parent) TDE_DEPRECATED; /** |