summaryrefslogtreecommitdiffstats
path: root/krename/commandplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'krename/commandplugin.h')
-rw-r--r--krename/commandplugin.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/krename/commandplugin.h b/krename/commandplugin.h
index 61edaee..1d6803e 100644
--- a/krename/commandplugin.h
+++ b/krename/commandplugin.h
@@ -23,25 +23,26 @@
#include "plugin.h"
#include "helpdialog.h"
-class QCheckBox;
+class TQCheckBox;
class KLineEdit;
class KListBox;
class KPushButton;
class CommandPlugin : public Plugin {
Q_OBJECT
+ TQ_OBJECT
public:
- const QString getName() const;
- const QString getAccelName() const;
+ const TQString getName() const;
+ const TQString getAccelName() const;
const int type() const;
bool checkError();
- void drawInterface( QWidget* w, QVBoxLayout* l );
+ void drawInterface( TQWidget* w, TQVBoxLayout* l );
void fillStructure();
- QString processFile( BatchRenamer*, int, QString token, int );
+ TQString processFile( BatchRenamer*, int, TQString token, int );
void finished();
bool alwaysUsed() const { return false; }
- const QPixmap getIcon() const;
+ const TQPixmap getIcon() const;
private slots:
void add();
@@ -50,12 +51,12 @@ class CommandPlugin : public Plugin {
private:
KLineEdit* commandline;
- QCheckBox* checkNoBlock;
+ TQCheckBox* checkNoBlock;
KListBox* list;
KPushButton* buttonAdd;
KPushButton* buttonRemove;
- QString command;
+ TQString command;
bool noblock;
};