summaryrefslogtreecommitdiffstats
path: root/konversation/src/urlcatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/urlcatcher.h')
-rw-r--r--konversation/src/urlcatcher.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/konversation/src/urlcatcher.h b/konversation/src/urlcatcher.h
index b713a4d..9203b19 100644
--- a/konversation/src/urlcatcher.h
+++ b/konversation/src/urlcatcher.h
@@ -19,8 +19,8 @@
class KListView;
-class QListViewItem;
-class QPushButton;
+class TQListViewItem;
+class TQPushButton;
class ViewContainer;
class KListViewSearchLineWidget;
@@ -29,21 +29,21 @@ class UrlCatcher : public ChatWindow
Q_OBJECT
public:
- explicit UrlCatcher(QWidget* parent);
+ explicit UrlCatcher(TQWidget* parent);
~UrlCatcher();
virtual bool canBeFrontView() { return true; }
signals:
- void deleteUrl(const QString& who,const QString& url);
+ void deleteUrl(const TQString& who,const TQString& url);
void clearUrlList();
public slots:
- void addUrl(const QString& who,const QString& url);
+ void addUrl(const TQString& who,const TQString& url);
protected slots:
void urlSelected();
- void openUrl(QListViewItem* item);
+ void openUrl(TQListViewItem* item);
void openUrlClicked();
void copyUrlClicked();
@@ -57,10 +57,10 @@ class UrlCatcher : public ChatWindow
/** Called from ChatWindow adjustFocus */
virtual void childAdjustFocus();
- QPushButton* openUrlButton;
- QPushButton* copyUrlButton;
- QPushButton* deleteUrlButton;
- QPushButton* saveListButton;
- QPushButton* clearListButton;
+ TQPushButton* openUrlButton;
+ TQPushButton* copyUrlButton;
+ TQPushButton* deleteUrlButton;
+ TQPushButton* saveListButton;
+ TQPushButton* clearListButton;
};
#endif