summaryrefslogtreecommitdiffstats
path: root/kwin-styles/cde/config
diff options
context:
space:
mode:
Diffstat (limited to 'kwin-styles/cde/config')
-rw-r--r--kwin-styles/cde/config/CMakeLists.txt4
-rw-r--r--kwin-styles/cde/config/Makefile.am10
-rw-r--r--kwin-styles/cde/config/config.cpp16
3 files changed, 15 insertions, 15 deletions
diff --git a/kwin-styles/cde/config/CMakeLists.txt b/kwin-styles/cde/config/CMakeLists.txt
index 9064c2bd..5faec263 100644
--- a/kwin-styles/cde/config/CMakeLists.txt
+++ b/kwin-styles/cde/config/CMakeLists.txt
@@ -19,9 +19,9 @@ link_directories(
${TQT_LIBRARY_DIRS}
)
-##### kwin_cde_config (module) ###################
+##### twin_cde_config (module) ###################
-tde_add_kpart( kwin_cde_config AUTOMOC
+tde_add_kpart( twin_cde_config AUTOMOC
SOURCES config.cpp
LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
diff --git a/kwin-styles/cde/config/Makefile.am b/kwin-styles/cde/config/Makefile.am
index d5c6da85..3e5bd243 100644
--- a/kwin-styles/cde/config/Makefile.am
+++ b/kwin-styles/cde/config/Makefile.am
@@ -1,15 +1,15 @@
INCLUDES = $(all_includes)
-kde_module_LTLIBRARIES = kwin_cde_config.la
+kde_module_LTLIBRARIES = twin_cde_config.la
-kwin_cde_config_la_SOURCES = config.cpp
-kwin_cde_config_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module $(LIB_QT) $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx
-kwin_cde_config_la_LIBADD = $(LIB_TDEUI)
+twin_cde_config_la_SOURCES = config.cpp
+twin_cde_config_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module $(LIB_QT) $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx
+twin_cde_config_la_LIBADD = $(LIB_TDEUI)
METASOURCES = AUTO
noinst_HEADERS = config.h
-lnkdir = $(kde_datadir)/kwin/
+lnkdir = $(kde_datadir)/twin/
###KMAKE-start (don't edit or delete this block)
diff --git a/kwin-styles/cde/config/config.cpp b/kwin-styles/cde/config/config.cpp
index cf58377d..fcd2de42 100644
--- a/kwin-styles/cde/config/config.cpp
+++ b/kwin-styles/cde/config/config.cpp
@@ -13,18 +13,18 @@ extern "C" KDE_EXPORT TQObject* allocate_config( KConfig* conf, TQWidget* parent
/* NOTE:
- * 'conf' is a pointer to the kwindecoration modules open kwin config,
+ * 'conf' is a pointer to the twindecoration modules open twin config,
* and is by default set to the "Style" group.
*
* 'parent' is the parent of the TQObject, which is a VBox inside the
- * Configure tab in kwindecoration
+ * Configure tab in twindecoration
*/
CdeConfig::CdeConfig( KConfig* conf, TQWidget* parent )
: TQObject( parent )
{
- cdeConfig = new KConfig("kwincderc");
- KGlobal::locale()->insertCatalogue("kwin_art_clients");
+ cdeConfig = new KConfig("twincderc");
+ KGlobal::locale()->insertCatalogue("twin_art_clients");
groupBox = new TQVBox( parent );
@@ -57,7 +57,7 @@ CdeConfig::CdeConfig( KConfig* conf, TQWidget* parent )
// connect( cbTitlebarButton, TQT_SIGNAL(clicked()), TQT_SLOT(slotSelectionChanged()) );
connect( bgAlign, TQT_SIGNAL(clicked(int)), TQT_SLOT(slotSelectionChanged(int)) );
- // Make the widgets visible in kwindecoration
+ // Make the widgets visible in twindecoration
groupBox->show();
}
@@ -80,8 +80,8 @@ void CdeConfig::slotSelectionChanged( int )
emit changed();
}
-// Loads the configurable options from the kwinrc config file
-// It is passed the open config from kwindecoration to improve efficiency
+// Loads the configurable options from the twinrc config file
+// It is passed the open config from twindecoration to improve efficiency
void CdeConfig::load( KConfig* /*conf*/ )
{
cdeConfig->setGroup("General");
@@ -99,7 +99,7 @@ void CdeConfig::load( KConfig* /*conf*/ )
}
-// Saves the configurable options to the kwinrc config file
+// Saves the configurable options to the twinrc config file
void CdeConfig::save( KConfig* /*conf*/ )
{
cdeConfig->setGroup("General");