summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kdecompat.h2
-rw-r--r--kmymoney2/export.h2
-rw-r--r--kmymoney2/widgets/kmymoneycombo.h6
-rw-r--r--kmymoney2/widgets/kmymoneydateinput.h2
-rw-r--r--kmymoney2/widgets/kmymoneyedit.h2
-rw-r--r--libkgpgfile/kgpgfile.cpp2
-rw-r--r--libkgpgfile/kgpgfile.h2
7 files changed, 9 insertions, 9 deletions
diff --git a/kdecompat.h b/kdecompat.h
index f66336a..57935d7 100644
--- a/kdecompat.h
+++ b/kdecompat.h
@@ -32,7 +32,7 @@
#endif
#if TDE_VERSION < TDE_MAKE_VERSION(3,2,0)
-#define KDE_DEPRECATED
+#define TDE_DEPRECATED
#endif
#endif // _KDECOMPAT_H
diff --git a/kmymoney2/export.h b/kmymoney2/export.h
index 8e912df..d7ce3aa 100644
--- a/kmymoney2/export.h
+++ b/kmymoney2/export.h
@@ -26,7 +26,7 @@
#if KDE_IS_VERSION(3,2,90)
#ifdef __KDE_HAVE_GCC_VISIBILITY
#include <kdemacros.h>
- #define KMYMONEY_EXPORT KDE_EXPORT
+ #define KMYMONEY_EXPORT TDE_EXPORT
#else
#define KMYMONEY_EXPORT
#endif
diff --git a/kmymoney2/widgets/kmymoneycombo.h b/kmymoney2/widgets/kmymoneycombo.h
index 40188b0..cf2cab7 100644
--- a/kmymoney2/widgets/kmymoneycombo.h
+++ b/kmymoney2/widgets/kmymoneycombo.h
@@ -101,7 +101,7 @@ public:
* @param id reference to TQString containing the id. If no item
* is selected id will be empty.
*/
- void selectedItem(TQString& id) const KDE_DEPRECATED;
+ void selectedItem(TQString& id) const TDE_DEPRECATED;
/**
* This method returns the id of the first selected item.
@@ -360,8 +360,8 @@ public:
void insertItem(const TQString& txt, int id, int idx = -1);
- void setItem(int id) KDE_DEPRECATED; // replace with setCurrentItem(id)
- int item(void) const KDE_DEPRECATED; // replace with currentItem()
+ void setItem(int id) TDE_DEPRECATED; // replace with setCurrentItem(id)
+ int item(void) const TDE_DEPRECATED; // replace with currentItem()
void setCurrentItem(int id);
int currentItem(void) const;
diff --git a/kmymoney2/widgets/kmymoneydateinput.h b/kmymoney2/widgets/kmymoneydateinput.h
index ba0376f..e4aa811 100644
--- a/kmymoney2/widgets/kmymoneydateinput.h
+++ b/kmymoney2/widgets/kmymoneydateinput.h
@@ -71,7 +71,7 @@ public:
~kMyMoneyDateInput();
// Replace calls to this with the new date() method
- // TQDate getTQDate(void) KDE_DEPRECATED;
+ // TQDate getTQDate(void) TDE_DEPRECATED;
TQDate date(void) const;
void setDate(TQDate date);
diff --git a/kmymoney2/widgets/kmymoneyedit.h b/kmymoney2/widgets/kmymoneyedit.h
index 8a8633a..7fe87f9 100644
--- a/kmymoney2/widgets/kmymoneyedit.h
+++ b/kmymoney2/widgets/kmymoneyedit.h
@@ -150,7 +150,7 @@ public:
/**
* @deprecated Use value() instead
*/
- // MyMoneyMoney getMoneyValue(void) KDE_DEPRECATED;
+ // MyMoneyMoney getMoneyValue(void) TDE_DEPRECATED;
MyMoneyMoney value(void) const;
diff --git a/libkgpgfile/kgpgfile.cpp b/libkgpgfile/kgpgfile.cpp
index cb13294..4267fb5 100644
--- a/libkgpgfile/kgpgfile.cpp
+++ b/libkgpgfile/kgpgfile.cpp
@@ -56,7 +56,7 @@ public:
};
extern "C" {
- KDE_EXPORT void *init_libkgpgfile()
+ TDE_EXPORT void *init_libkgpgfile()
{
return new KGPGFileFactory;
}
diff --git a/libkgpgfile/kgpgfile.h b/libkgpgfile/kgpgfile.h
index d12b718..d94100a 100644
--- a/libkgpgfile/kgpgfile.h
+++ b/libkgpgfile/kgpgfile.h
@@ -56,7 +56,7 @@ class TDEProcess;
* GPGAvailable(). Other, more general methods such as open(), close() and flush() are
* not shown in the above picture.
*/
-class KDE_EXPORT KGPGFile : public TQObject, public TQFile
+class TDE_EXPORT KGPGFile : public TQObject, public TQFile
{
TQ_OBJECT