summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/irc/ui/channellist.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/irc/ui/channellist.h')
-rw-r--r--kopete/protocols/irc/ui/channellist.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/kopete/protocols/irc/ui/channellist.h b/kopete/protocols/irc/ui/channellist.h
index c6f435a0..59b03a25 100644
--- a/kopete/protocols/irc/ui/channellist.h
+++ b/kopete/protocols/irc/ui/channellist.h
@@ -18,9 +18,9 @@
#ifndef CHANNELLIST_H
#define CHANNELLIST_H
-#include <qwidget.h>
-#include <qmap.h>
-#include <qpair.h>
+#include <tqwidget.h>
+#include <tqmap.h>
+#include <tqpair.h>
#include "kircengine.h"
@@ -40,7 +40,7 @@ class ChannelList
Q_OBJECT
public:
- ChannelList( QWidget *parent, KIRC::Engine *engine );
+ ChannelList( TQWidget *parent, KIRC::Engine *engine );
public slots:
void search();
@@ -48,33 +48,33 @@ class ChannelList
void clear();
signals:
- void channelDoubleClicked( const QString &channel );
- void channelSelected( const QString &channel );
+ void channelDoubleClicked( const TQString &channel );
+ void channelSelected( const TQString &channel );
private slots:
- void slotItemDoubleClicked( QListViewItem * i );
- void slotItemSelected( QListViewItem * i );
- void slotChannelListed( const QString & channel, uint users, const QString & topic );
+ void slotItemDoubleClicked( TQListViewItem * i );
+ void slotItemSelected( TQListViewItem * i );
+ void slotChannelListed( const TQString & channel, uint users, const TQString & topic );
void slotListEnd();
void slotSearchCache();
void slotStatusChanged( KIRC::Engine::Status );
private:
- void checkSearchResult( const QString & channel, uint users, const QString & topic );
+ void checkSearchResult( const TQString & channel, uint users, const TQString & topic );
- QLabel* textLabel1_2;
- QLineEdit* channelSearch;
- QSpinBox* numUsers;
- QPushButton* mSearchButton;
+ TQLabel* textLabel1_2;
+ TQLineEdit* channelSearch;
+ TQSpinBox* numUsers;
+ TQPushButton* mSearchButton;
KListView* mChannelList;
- QVBoxLayout* ChannelListLayout;
- QHBoxLayout* layout72_2;
+ TQVBoxLayout* ChannelListLayout;
+ TQHBoxLayout* layout72_2;
KIRC::Engine *m_engine;
bool mSearching;
- QString mSearch;
+ TQString mSearch;
uint mUsers;
- QMap< QString, QPair< uint, QString > > channelCache;
- QMap< QString, QPair< uint, QString > >::const_iterator cacheIterator;
+ TQMap< TQString, QPair< uint, TQString > > channelCache;
+ TQMap< TQString, QPair< uint, TQString > >::const_iterator cacheIterator;
};
#endif