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 /klipper/urlgrabber.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 'klipper/urlgrabber.cpp')
-rw-r--r-- | klipper/urlgrabber.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/klipper/urlgrabber.cpp b/klipper/urlgrabber.cpp index f04bdf22f..cb891a33d 100644 --- a/klipper/urlgrabber.cpp +++ b/klipper/urlgrabber.cpp @@ -46,7 +46,7 @@ #define DO_NOTHING_ITEM 11 #define DISABLE_POPUP 12 -URLGrabber::URLGrabber( KConfig* config ) +URLGrabber::URLGrabber( TDEConfig* config ) : m_config( config ) { if( m_config == NULL ) @@ -291,7 +291,7 @@ void URLGrabber::editData() } -void URLGrabber::readConfiguration( KConfig *kc ) +void URLGrabber::readConfiguration( TDEConfig *kc ) { myActions->clear(); kc->setGroup( "General" ); @@ -308,7 +308,7 @@ void URLGrabber::readConfiguration( KConfig *kc ) } -void URLGrabber::writeConfiguration( KConfig *kc ) +void URLGrabber::writeConfiguration( TDEConfig *kc ) { kc->setGroup( "General" ); kc->writeEntry( "Number of Actions", myActions->count() ); @@ -439,7 +439,7 @@ ClipAction::ClipAction( const ClipAction& action ) } -ClipAction::ClipAction( KConfig *kc ) +ClipAction::ClipAction( TDEConfig *kc ) : myRegExp( kc->readEntry( "Regexp" ) ), myDescription( kc->readEntry( "Description" ) ) { @@ -477,8 +477,8 @@ void ClipAction::addCommand( const TQString& command, } -// precondition: we're in the correct action's group of the KConfig object -void ClipAction::save( KConfig *kc ) const +// precondition: we're in the correct action's group of the TDEConfig object +void ClipAction::save( TDEConfig *kc ) const { kc->writeEntry( "Description", description() ); kc->writeEntry( "Regexp", regExp() ); |