diff options
Diffstat (limited to 'klipper/urlgrabber.h')
-rw-r--r-- | klipper/urlgrabber.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/klipper/urlgrabber.h b/klipper/urlgrabber.h index e08092483..40d288b9a 100644 --- a/klipper/urlgrabber.h +++ b/klipper/urlgrabber.h @@ -39,7 +39,7 @@ struct ClipCommand; typedef TQPtrList<ClipAction> ActionList; typedef TQPtrListIterator<ClipAction> ActionListIterator; -class URLGrabber : public QObject +class URLGrabber : public TQObject { Q_OBJECT @@ -132,7 +132,7 @@ public: inline bool matches( const TQString& string ) { int res = myRegExp.search( string ) ; if ( res != -1 ) { - myCapturedTexts = myRegExp.capturedTexts(); + myCapturedTexts = myRegExp.tqcapturedTexts(); return true; } return false; @@ -162,7 +162,7 @@ public: private: TQRegExp myRegExp; - QStringList myCapturedTexts; + TQStringList myCapturedTexts; TQString myDescription; TQPtrList<ClipCommand> myCommands; |