diff options
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 ) |