diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:06:07 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:06:07 -0600 |
commit | 76ce0b1e44d7105792de5733e1b147f9892a9347 (patch) | |
tree | ee538d97279534bc313066a721693c298e610159 /kcm_gtk/kcmgtk.cpp | |
parent | 96c62f7e356a2d63acc8edb149821a677c4d1bc8 (diff) | |
download | gtk-qt-engine-76ce0b1e44d7105792de5733e1b147f9892a9347.tar.gz gtk-qt-engine-76ce0b1e44d7105792de5733e1b147f9892a9347.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kcm_gtk/kcmgtk.cpp')
-rw-r--r-- | kcm_gtk/kcmgtk.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kcm_gtk/kcmgtk.cpp b/kcm_gtk/kcmgtk.cpp index 3e42a0a..5cebe54 100644 --- a/kcm_gtk/kcmgtk.cpp +++ b/kcm_gtk/kcmgtk.cpp @@ -68,7 +68,7 @@ K_EXPORT_COMPONENT_FACTORY( kcm_gtk, KcmGtkFactory("gtk"))*/ extern "C" { - KCModule *create_kcmgtk( TQWidget * parent, const char * name ) + TDECModule *create_kcmgtk( TQWidget * parent, const char * name ) { TDEGlobal::locale()->insertCatalogue( "gtkqtengine" ); return new KcmGtk( parent, "kcmgtk" ); @@ -160,14 +160,14 @@ TQFont GtkRcParser::parseFont(TQString fontString) } KcmGtk::KcmGtk(TQWidget *parent, const char *name, const TQStringList&) - : KCModule(parent, name), + : TDECModule(parent, name), myAboutData(0), emacsDetailsDialog(NULL), searchPathsDialog(NULL) { TDEGlobal::locale()->insertCatalogue("gtkqtengine"); - config = new KConfig("kcmgtkrc"); + config = new TDEConfig("kcmgtkrc"); TQStringList gtkSearchPathsDefault; gtkSearchPathsDefault.append("/usr"); @@ -370,7 +370,7 @@ void KcmGtk::load() bool usingGtk3TQtEngine = false; if (TQFile::exists(GTK3_INI_DIR + GTK3_INI_FILE)) { TQString activeGtk3Style; - KConfig gtk3Config(GTK3_INI_DIR + GTK3_INI_FILE); + TDEConfig gtk3Config(GTK3_INI_DIR + GTK3_INI_FILE); gtk3Config.setGroup("Settings"); activeGtk3Style = gtk3Config.readEntry("gtk-theme-name"); if (activeGtk3Style == "tdegtk") { @@ -533,7 +533,7 @@ void KcmGtk::save() int KcmGtk::buttons() { - return KCModule::Apply; + return TDECModule::Apply; } TQString KcmGtk::quickHelp() const @@ -601,7 +601,7 @@ void KcmGtk::getProfiles(const TQString& basePath, int type) TQString fileName = basePath + "/profiles.ini"; if (TQFile::exists(fileName)) { - KConfig config(fileName, true, false); + TDEConfig config(fileName, true, false); TQStringList groups = config.groupList(); for ( TQStringList::Iterator it = groups.begin(); it != groups.end(); ++it ) |