summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/konsole_part.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
commitcc74f360bb40da3d79f58048f8e8611804980aa6 (patch)
treec4385d2c16b904757b1c8bb998a4aec6993373f7 /konsole/konsole/konsole_part.cpp
parent79b21d47bce1ee428affc97534cd8b257232a871 (diff)
downloadtdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz
tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'konsole/konsole/konsole_part.cpp')
-rw-r--r--konsole/konsole/konsole_part.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/konsole/konsole/konsole_part.cpp b/konsole/konsole/konsole_part.cpp
index 34550fd30..6562ea0d9 100644
--- a/konsole/konsole/konsole_part.cpp
+++ b/konsole/konsole/konsole_part.cpp
@@ -150,7 +150,7 @@ konsolePart::konsolePart(TQWidget *_parentWidget, const char *widgetName, TQObje
colors->sort();
// Check to see which config file we use: konsolepartrc or konsolerc
- KConfig* config = new KConfig("konsolepartrc", true);
+ TDEConfig* config = new TDEConfig("konsolepartrc", true);
config->setDesktopGroup();
b_useKonsoleSettings = config->readBoolEntry("use_konsole_settings", false);
delete config;
@@ -524,7 +524,7 @@ void konsolePart::applyProperties()
se->setKeymapNo( n_keytab );
// FIXME: Move this somewhere else...
- KConfig* config = new KConfig("konsolerc",true);
+ TDEConfig* config = new TDEConfig("konsolerc",true);
config->setGroup("UTMP");
se->setAddToUtmp( config->readBoolEntry("AddToUtmp",true));
delete config;
@@ -550,12 +550,12 @@ void konsolePart::setSettingsMenuEnabled( bool enable )
void konsolePart::readProperties()
{
- KConfig* config;
+ TDEConfig* config;
if ( b_useKonsoleSettings )
- config = new KConfig( "konsolerc", true );
+ config = new TDEConfig( "konsolerc", true );
else
- config = new KConfig( "konsolepartrc", true );
+ config = new TDEConfig( "konsolepartrc", true );
config->setDesktopGroup();
@@ -616,7 +616,7 @@ void konsolePart::readProperties()
delete config;
- config = new KConfig("konsolerc",true);
+ config = new TDEConfig("konsolerc",true);
config->setDesktopGroup();
te->setTerminalSizeHint( config->readBoolEntry("TerminalSizeHint",true) );
delete config;
@@ -624,7 +624,7 @@ void konsolePart::readProperties()
void konsolePart::saveProperties()
{
- KConfig* config = new KConfig("konsolepartrc");
+ TDEConfig* config = new TDEConfig("konsolepartrc");
config->setDesktopGroup();
if ( b_useKonsoleSettings ) { // Don't save Settings if using konsolerc