From 88a071548f4cc0d77a9c10b8e141c6b79b2a8188 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 15 Nov 2011 18:54:59 -0600 Subject: [PATCH] Rename KDE_VERSION to TDE_VERSION --- configure.in.in | 4 ++-- kdejava/koala/org/kde/koala/KDE.java | 4 ++-- korundum/rubylib/korundum/Korundum.cpp | 14 +++++++------- korundum/rubylib/korundum/kdehandlers.cpp | 8 ++++---- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/configure.in.in b/configure.in.in index 71b17442..d3215c87 100644 --- a/configure.in.in +++ b/configure.in.in @@ -236,7 +236,7 @@ AC_DEFUN([KDE_CHECK_MDI], #include ], [ - #if KDE_VERSION < ((3<<16) | (2<<8) | (0)) + #if TDE_VERSION < ((3<<16) | (2<<8) | (0)) KDE_choke me #endif ], @@ -276,7 +276,7 @@ AC_DEFUN([KDE_CHECK_KNS], #include ], [ - #if KDE_VERSION < ((3<<16) | (3<<8) | (92)) + #if TDE_VERSION < ((3<<16) | (3<<8) | (92)) KDE_choke me #endif ], diff --git a/kdejava/koala/org/kde/koala/KDE.java b/kdejava/koala/org/kde/koala/KDE.java index 3a867484..1b6873a7 100644 --- a/kdejava/koala/org/kde/koala/KDE.java +++ b/kdejava/koala/org/kde/koala/KDE.java @@ -22,13 +22,13 @@ import org.kde.qt.QColorGroup; */ public class KDE { /** - Returns the encoded number of KDE's version, see the KDE_VERSION macro. + Returns the encoded number of KDE's version, see the TDE_VERSION macro. In contrary to that macro this function returns the number of the actully installed KDE version, not the number of the KDE version that was installed when the program was compiled. @return the version number, encoded in a single uint - @short Returns the encoded number of KDE's version, see the KDE_VERSION macro. + @short Returns the encoded number of KDE's version, see the TDE_VERSION macro. */ public static native int version(); /** diff --git a/korundum/rubylib/korundum/Korundum.cpp b/korundum/rubylib/korundum/Korundum.cpp index 9fcd74df..b3c93c70 100644 --- a/korundum/rubylib/korundum/Korundum.cpp +++ b/korundum/rubylib/korundum/Korundum.cpp @@ -26,7 +26,7 @@ #include #include #include -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 #include #endif #include @@ -472,7 +472,7 @@ public: DCOPClient* dc = dcopRef->dcopClient(); TQCString replyType; TQByteArray dataReceived; -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 bool ok = dc->call(dcopRef->app(), dcopRef->obj(), _remFun, *_data, replyType, dataReceived, _useEventLoop, _timeout); #else bool ok = dc->call(dcopRef->app(), dcopRef->obj(), _remFun, *_data, replyType, dataReceived, _useEventLoop); @@ -1041,7 +1041,7 @@ new_kde(int argc, VALUE * argv, VALUE klass) return instance; } -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 static VALUE kconfigskeletonitem_immutable(VALUE self) @@ -1116,7 +1116,7 @@ konsole_part_sendinput(VALUE self, VALUE value_text) return self; } -#if KDE_VERSION >= 0x030500 +#if TDE_VERSION >= 0x030500 static VALUE konsole_part_setautostartshell(VALUE self, VALUE enabled) { @@ -1145,7 +1145,7 @@ Init_korundum() } set_new_kde(new_kde); -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 set_kconfigskeletonitem_immutable(kconfigskeletonitem_immutable); #endif set_kde_resolve_classname(kde_resolve_classname); @@ -1163,14 +1163,14 @@ Init_korundum() rb_define_singleton_method(kde_module, "dcop_call", (VALUE (*) (...)) dcop_call, -1); rb_define_singleton_method(kde_module, "dcop_send", (VALUE (*) (...)) dcop_send, -1); -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 rb_define_method(kconfigskeleton_class, "addItem", (VALUE (*) (...)) config_additem, -1); #endif rb_define_method(konsole_part_class, "startProgram", (VALUE (*) (...)) konsole_part_startprogram, 2); rb_define_method(konsole_part_class, "showShellInDir", (VALUE (*) (...)) konsole_part_showshellindir, 1); rb_define_method(konsole_part_class, "sendInput", (VALUE (*) (...)) konsole_part_sendinput, 1); -#if KDE_VERSION >= 0x030500 +#if TDE_VERSION >= 0x030500 rb_define_method(konsole_part_class, "setAutoStartShell", (VALUE (*) (...)) konsole_part_setautostartshell, 1); rb_define_method(konsole_part_class, "autoStartShell=", (VALUE (*) (...)) konsole_part_setautostartshell, 1); rb_define_method(konsole_part_class, "setAutoDestroy", (VALUE (*) (...)) konsole_part_setautodestroy, 1); diff --git a/korundum/rubylib/korundum/kdehandlers.cpp b/korundum/rubylib/korundum/kdehandlers.cpp index 1d631399..9eeae1dc 100644 --- a/korundum/rubylib/korundum/kdehandlers.cpp +++ b/korundum/rubylib/korundum/kdehandlers.cpp @@ -41,7 +41,7 @@ #include #include #include -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 #include #include #include @@ -606,7 +606,7 @@ void marshall_KServiceGroupList(Marshall *m) { } } -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 void marshall_KMountPointList(Marshall *m) { switch(m->action()) { case Marshall::FromVALUE: @@ -1186,7 +1186,7 @@ void marshall_ValueItemList(Marshall *m) { #define DEF_VALUELIST_MARSHALLER(ListIdent,ItemList,Item,Itr) namespace { char ListIdent##STR[] = #Item; }; \ Marshall::HandlerFn marshall_##ListIdent = marshall_ValueItemList; -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 DEF_VALUELIST_MARSHALLER( ChoicesList, TQValueList, KConfigSkeleton::ItemEnum::Choice, TQValueList::Iterator ) #endif DEF_VALUELIST_MARSHALLER( KAboutPersonList, TQValueList, KAboutPerson, TQValueList::Iterator ) @@ -1388,7 +1388,7 @@ TypeHandler KDE_handlers[] = { { "KService::List", marshall_KServiceList }, { "KServiceGroup::List", marshall_KServiceGroupList }, { "KServiceGroup::Ptr", marshall_KServiceGroupPtr }, -#if KDE_VERSION >= 0x030200 +#if TDE_VERSION >= 0x030200 { "KMountPoint::List", marshall_KMountPointList }, { "KPluginInfo::List", marshall_KPluginInfoList }, { "TQValueList", marshall_ChoicesList },