summaryrefslogtreecommitdiffstats
path: root/knights/list_pgn.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/list_pgn.h')
-rw-r--r--knights/list_pgn.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/knights/list_pgn.h b/knights/list_pgn.h
index f8712b5..105d9e9 100644
--- a/knights/list_pgn.h
+++ b/knights/list_pgn.h
@@ -18,8 +18,8 @@
#ifndef LIST_PGN_H
#define LIST_PGN_H
-#include <qvbox.h>
-#include <qstring.h>
+#include <tqvbox.h>
+#include <tqstring.h>
#include "pgn.h"
/**
@@ -30,32 +30,33 @@ class match_param;
class KStatusBar;
class KProgress;
class KListView;
-class QHBox;
+class TQHBox;
-class list_pgn : public QVBox
+class list_pgn : public TQVBox
{
Q_OBJECT
+ TQ_OBJECT
public:
- list_pgn(QWidget *parent=0, const char *name=0);
- void setURL( QString URL );
+ list_pgn(TQWidget *tqparent=0, const char *name=0);
+ void setURL( TQString URL );
void setProgress( const int );
- QString URL( void )
+ TQString URL( void )
{ return myURL; }
~list_pgn();
signals:
- void selected( const QString&, const int& );
+ void selected( const TQString&, const int& );
protected slots:
- void slot_selected( QListViewItem *item );
+ void slot_selected( TQListViewItem *item );
protected:
- void timerEvent( QTimerEvent * );
+ void timerEvent( TQTimerEvent * );
private:
- QString myURL;
- QHBox *statusBox;
+ TQString myURL;
+ TQHBox *statusBox;
KListView *listView;
KListView *dummyView;
KStatusBar *status;