diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /twin/rules.cpp | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'twin/rules.cpp')
-rw-r--r-- | twin/rules.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/twin/rules.cpp b/twin/rules.cpp index 6d2d66906..6f2b3b615 100644 --- a/twin/rules.cpp +++ b/twin/rules.cpp @@ -107,7 +107,7 @@ Rules::Rules( const TQString& str, bool temporary ) var##rule = readForceRule( cfg, #var "rule" ); -Rules::Rules( KConfig& cfg ) +Rules::Rules( TDEConfig& cfg ) : temporary_state( 0 ) { readFromCfg( cfg ); @@ -115,7 +115,7 @@ Rules::Rules( KConfig& cfg ) static int limit0to4( int i ) { return QMAX( 0, QMIN( 4, i )); } -void Rules::readFromCfg( KConfig& cfg ) +void Rules::readFromCfg( TDEConfig& cfg ) { description = cfg.readEntry( "Description" ); if( description.isEmpty()) // capitalized first, lowercase for backwards compatibility @@ -216,7 +216,7 @@ void Rules::readFromCfg( KConfig& cfg ) cfg.deleteEntry( #var ); -void Rules::write( KConfig& cfg ) const +void Rules::write( TDEConfig& cfg ) const { cfg.writeEntry( "Description", description ); // always write wmclass @@ -293,7 +293,7 @@ bool Rules::isEmpty() const && disableglobalshortcutsrule == UnusedForceRule ); } -Rules::SetRule Rules::readSetRule( KConfig& cfg, const TQString& key ) +Rules::SetRule Rules::readSetRule( TDEConfig& cfg, const TQString& key ) { int v = cfg.readNumEntry( key ); if( v >= DontAffect && v <= ForceTemporarily ) @@ -301,7 +301,7 @@ Rules::SetRule Rules::readSetRule( KConfig& cfg, const TQString& key ) return UnusedSetRule; } -Rules::ForceRule Rules::readForceRule( KConfig& cfg, const TQString& key ) +Rules::ForceRule Rules::readForceRule( TDEConfig& cfg, const TQString& key ) { int v = cfg.readNumEntry( key ); if( v == DontAffect || v == Force || v == ForceTemporarily ) @@ -309,7 +309,7 @@ Rules::ForceRule Rules::readForceRule( KConfig& cfg, const TQString& key ) return UnusedForceRule; } -NET::WindowType Rules::readType( KConfig& cfg, const TQString& key ) +NET::WindowType Rules::readType( TDEConfig& cfg, const TQString& key ) { int v = cfg.readNumEntry( key ); if( v >= NET::Normal && v <= NET::Splash ) @@ -960,7 +960,7 @@ void Workspace::loadWindowRules() delete rules.front(); rules.pop_front(); } - KConfig cfg( "twinrulesrc", true ); + TDEConfig cfg( "twinrulesrc", true ); cfg.setGroup( "General" ); int count = cfg.readNumEntry( "count" ); for( int i = 1; @@ -976,7 +976,7 @@ void Workspace::loadWindowRules() void Workspace::writeWindowRules() { rulesUpdatedTimer.stop(); - KConfig cfg( "twinrulesrc" ); + TDEConfig cfg( "twinrulesrc" ); TQStringList groups = cfg.groupList(); for( TQStringList::ConstIterator it = groups.begin(); it != groups.end(); |