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.h | |
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.h')
-rw-r--r-- | klipper/urlgrabber.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/klipper/urlgrabber.h b/klipper/urlgrabber.h index b5212890b..a40e48bf6 100644 --- a/klipper/urlgrabber.h +++ b/klipper/urlgrabber.h @@ -31,7 +31,7 @@ class TQTimer; -class KConfig; +class TDEConfig; class KPopupMenu; class ClipAction; @@ -44,7 +44,7 @@ class URLGrabber : public TQObject Q_OBJECT public: - URLGrabber( KConfig* config ); + URLGrabber( TDEConfig* config ); ~URLGrabber(); /** @@ -58,8 +58,8 @@ public: const ActionList * actionList() const { return myActions; } void setActionList( ActionList * ); - void readConfiguration( KConfig * ); - void writeConfiguration( KConfig * ); + void readConfiguration( TDEConfig * ); + void writeConfiguration( TDEConfig * ); int popupTimeout() const { return myPopupKillTimeout; } void setPopupTimeout( int timeout ) { myPopupKillTimeout = timeout; } @@ -89,7 +89,7 @@ private: TQTimer *myPopupKillTimer; int myPopupKillTimeout; bool m_stripWhiteSpace; - KConfig* m_config; + TDEConfig* m_config; private slots: void slotActionMenu() { actionMenu( true ); } @@ -124,7 +124,7 @@ class ClipAction public: ClipAction( const TQString& regExp, const TQString& description ); ClipAction( const ClipAction& ); - ClipAction( KConfig *kc ); + ClipAction( TDEConfig *kc ); ~ClipAction(); void setRegExp( const TQString& r) { myRegExp = TQRegExp( r ); } @@ -150,9 +150,9 @@ public: const TQPtrList<ClipCommand>& commands() const { return myCommands; } /** - * Saves this action to a a given KConfig object + * Saves this action to a a given TDEConfig object */ - void save( KConfig * ) const; + void save( TDEConfig * ) const; /** * Returns the most recent list of matched group backreferences. |