diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
commit | 79b21d47bce1ee428affc97534cd8b257232a871 (patch) | |
tree | 0df1fa0109d9f2bcef932eda8b5c25b2e06669ed /twin/kcmtwin/twinoptions/main.cpp | |
parent | 9a898d493f493adbc404f7223043c85f3817472b (diff) | |
download | tdebase-79b21d47bce1ee428affc97534cd8b257232a871.tar.gz tdebase-79b21d47bce1ee428affc97534cd8b257232a871.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'twin/kcmtwin/twinoptions/main.cpp')
-rw-r--r-- | twin/kcmtwin/twinoptions/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/twin/kcmtwin/twinoptions/main.cpp b/twin/kcmtwin/twinoptions/main.cpp index 5b193ed5f..3c072996b 100644 --- a/twin/kcmtwin/twinoptions/main.cpp +++ b/twin/kcmtwin/twinoptions/main.cpp @@ -39,7 +39,7 @@ extern "C" KDE_EXPORT KCModule *create_twinfocus(TQWidget *parent, const char *name) { //CT there's need for decision: kwm or twin? - KGlobal::locale()->insertCatalogue("kcmkwm"); + TDEGlobal::locale()->insertCatalogue("kcmkwm"); KConfig *c = new KConfig("twinrc", false, true); return new KFocusConfig(true, c, parent, name); } @@ -47,14 +47,14 @@ extern "C" KDE_EXPORT KCModule *create_twinactions(TQWidget *parent, const char *name) { //CT there's need for decision: kwm or twin? - KGlobal::locale()->insertCatalogue("kcmkwm"); + TDEGlobal::locale()->insertCatalogue("kcmkwm"); return new KActionsOptions( parent, name); } KDE_EXPORT KCModule *create_twinmoving(TQWidget *parent, const char *name) { //CT there's need for decision: kwm or twin? - KGlobal::locale()->insertCatalogue("kcmkwm"); + TDEGlobal::locale()->insertCatalogue("kcmkwm"); KConfig *c = new KConfig("twinrc", false, true); return new KMovingConfig(true, c, parent, name); } @@ -62,7 +62,7 @@ extern "C" KDE_EXPORT KCModule *create_twinadvanced(TQWidget *parent, const char *name) { //CT there's need for decision: kwm or twin? - KGlobal::locale()->insertCatalogue("kcmkwm"); + TDEGlobal::locale()->insertCatalogue("kcmkwm"); KConfig *c = new KConfig("twinrc", false, true); return new KAdvancedConfig(true, c, parent, name); } @@ -70,7 +70,7 @@ extern "C" KDE_EXPORT KCModule *create_twintranslucency(TQWidget *parent, const char *name) { //CT there's need for decision: kwm or twin? - KGlobal::locale()->insertCatalogue("kcmkwm"); + TDEGlobal::locale()->insertCatalogue("kcmkwm"); KConfig *c = new KConfig("twinrc", false, true); return new KTranslucencyConfig(true, c, parent, name); } @@ -78,7 +78,7 @@ extern "C" KDE_EXPORT KCModule *create_twinoptions ( TQWidget *parent, const char* name) { //CT there's need for decision: kwm or twin? - KGlobal::locale()->insertCatalogue("kcmkwm"); + TDEGlobal::locale()->insertCatalogue("kcmkwm"); return new KWinOptions( parent, name); } } |