diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:02:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:02:02 -0600 |
commit | de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf (patch) | |
tree | dbb3152c372f8620f9290137d461f3d9f9eba1cb /kcontrol/performance/system.cpp | |
parent | 936d3cec490c13f2c5f7dd14f5e364fddaa6da71 (diff) | |
download | tdebase-de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf.tar.gz tdebase-de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kcontrol/performance/system.cpp')
-rw-r--r-- | kcontrol/performance/system.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kcontrol/performance/system.cpp b/kcontrol/performance/system.cpp index 500178002..57d50ee14 100644 --- a/kcontrol/performance/system.cpp +++ b/kcontrol/performance/system.cpp @@ -18,7 +18,7 @@ #include "system.h" -#include <kconfig.h> +#include <tdeconfig.h> #include <tqwhatsthis.h> #include <tqcheckbox.h> #include <tqlabel.h> @@ -49,9 +49,9 @@ SystemWidget::SystemWidget( TQWidget* parent_P ) " handler will refuse to provide backtrace for the bugreport with this option" " turned on (you will need to reproduce it again with this option turned off," " or turn on the developer mode for the crash handler).</p>" ); - TQWhatsThis::add( cb_disable_kbuildsycoca, tmp ); - TQWhatsThis::add( label_kbuildsycoca, tmp ); - connect( cb_disable_kbuildsycoca, TQT_SIGNAL( clicked()), TQT_SIGNAL( changed())); + TQWhatsThis::add( cb_disable_tdebuildsycoca, tmp ); + TQWhatsThis::add( label_tdebuildsycoca, tmp ); + connect( cb_disable_tdebuildsycoca, TQT_SIGNAL( clicked()), TQT_SIGNAL( changed())); defaults(); } @@ -60,14 +60,14 @@ void SystemWidget::load(bool useDefaults ) TDEConfig cfg( "kdedrc", true ); cfg.setReadDefaults( useDefaults ); cfg.setGroup( "General" ); - cb_disable_kbuildsycoca->setChecked( cfg.readBoolEntry( "DelayedCheck", false )); + cb_disable_tdebuildsycoca->setChecked( cfg.readBoolEntry( "DelayedCheck", false )); } void SystemWidget::save() { TDEConfig cfg( "kdedrc" ); cfg.setGroup( "General" ); - cfg.writeEntry( "DelayedCheck", cb_disable_kbuildsycoca->isChecked()); + cfg.writeEntry( "DelayedCheck", cb_disable_tdebuildsycoca->isChecked()); } void SystemWidget::defaults() |