summaryrefslogtreecommitdiffstats
path: root/kradio3/src/include
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:24:53 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:24:53 -0600
commitd9b70de56a7c1ce685cc8fd119d9b004e1fbfdee (patch)
tree64b2d68617a65f38415feee55540640ec579eda9 /kradio3/src/include
parentf2f2c5781e60ffdf342231c2844a6d47f332b4ca (diff)
downloadtderadio-d9b70de56a7c1ce685cc8fd119d9b004e1fbfdee.tar.gz
tderadio-d9b70de56a7c1ce685cc8fd119d9b004e1fbfdee.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kradio3/src/include')
-rw-r--r--kradio3/src/include/plugins.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kradio3/src/include/plugins.h b/kradio3/src/include/plugins.h
index 6fd6d70..023e35d 100644
--- a/kradio3/src/include/plugins.h
+++ b/kradio3/src/include/plugins.h
@@ -137,12 +137,12 @@ protected :
#define PLUGIN_LIBRARY_FUNCTIONS(class_name, i18nName, description) \
extern "C" void KRadioPlugin_LoadLibrary() \
{ \
- KGlobal::locale()->insertCatalogue(i18nName); \
+ TDEGlobal::locale()->insertCatalogue(i18nName); \
} \
\
extern "C" void KRadioPlugin_UnloadLibrary() \
{ \
- KGlobal::locale()->removeCatalogue(i18nName); \
+ TDEGlobal::locale()->removeCatalogue(i18nName); \
} \
\
extern "C" void KRadioPlugin_GetAvailablePlugins(TQMap<TQString, TQString> &info) \
@@ -163,12 +163,12 @@ extern "C" PluginBase *KRadioPlugin_CreatePlugin(const TQString &type, const TQS
#define PLUGIN_LIBRARY_FUNCTIONS2(class_name1, i18nName, description1, class_name2, description2) \
extern "C" void KRadioPlugin_LoadLibrary() \
{ \
- KGlobal::locale()->insertCatalogue(i18nName); \
+ TDEGlobal::locale()->insertCatalogue(i18nName); \
} \
\
extern "C" void KRadioPlugin_UnloadLibrary() \
{ \
- KGlobal::locale()->removeCatalogue(i18nName); \
+ TDEGlobal::locale()->removeCatalogue(i18nName); \
} \
\
extern "C" void KRadioPlugin_GetAvailablePlugins(TQMap<TQString, TQString> &info) \