summaryrefslogtreecommitdiffstats
path: root/krename/replacedialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'krename/replacedialog.h')
-rw-r--r--krename/replacedialog.h37
1 files changed, 19 insertions, 18 deletions
diff --git a/krename/replacedialog.h b/krename/replacedialog.h
index 0598fcc..13d7542 100644
--- a/krename/replacedialog.h
+++ b/krename/replacedialog.h
@@ -20,28 +20,29 @@
// QT includes
#include <kdialogbase.h>
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
// Own includes
#include "batchrenamer.h"
-class QCheckBox;
-class QGridLayout;
-class QGridLayout;
-class QLabel;
-class QLineEdit;
+class TQCheckBox;
+class TQGridLayout;
+class TQGridLayout;
+class TQLabel;
+class TQLineEdit;
class KPushButton;
-class QListViewItem;
+class TQListViewItem;
class KListView;
class ReplaceDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- ReplaceDialog( QValueList<replacestrings> & r, QWidget* parent = 0 );
+ ReplaceDialog( TQValueList<replacestrings> & r, TQWidget* tqparent = 0 );
~ReplaceDialog();
- QValueList<replacestrings> getList();
+ TQValueList<replacestrings> getList();
private slots:
void add();
@@ -54,25 +55,25 @@ class ReplaceDialog : public KDialogBase
private:
void reset();
- QLabel* TextLabel1;
- QLineEdit* text2;
- QLabel* TextLabel2;
- QLineEdit* text1;
+ TQLabel* TextLabel1;
+ TQLineEdit* text2;
+ TQLabel* TextLabel2;
+ TQLineEdit* text1;
KListView* list;
- QCheckBox* checkReg;
+ TQCheckBox* checkReg;
KPushButton* buttonAdd;
KPushButton* buttonRemove;
KPushButton* buttonEdit;
KPushButton* buttonRegEdit;
- QString encode( QString s );
- QString decode( QString s );
+ TQString encode( TQString s );
+ TQString decode( TQString s );
protected:
- void resizeEvent( QResizeEvent* e );
+ void resizeEvent( TQResizeEvent* e );
- QGridLayout* ReplaceDialogLayout;
+ TQGridLayout* ReplaceDialogLayout;
};
#endif // REPLACEDIALOG_H