summaryrefslogtreecommitdiffstats
path: root/krename/coorddialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'krename/coorddialog.h')
-rw-r--r--krename/coorddialog.h28
1 files changed, 15 insertions, 13 deletions
diff --git a/krename/coorddialog.h b/krename/coorddialog.h
index e8e5be3..fe5e298 100644
--- a/krename/coorddialog.h
+++ b/krename/coorddialog.h
@@ -21,23 +21,24 @@
#include <kdialogbase.h>
#include <klineedit.h>
-class QKeyEvent;
+class TQKeyEvent;
class DSLineEdit : public KLineEdit {
Q_OBJECT
+ TQ_OBJECT
public:
- DSLineEdit( QWidget* parent = 0, const char* name = 0 );
+ DSLineEdit( TQWidget* tqparent = 0, const char* name = 0 );
signals:
void changed();
protected:
- void keyPressEvent( QKeyEvent* e );
- void mousePressEvent( QMouseEvent* e );
+ void keyPressEvent( TQKeyEvent* e );
+ void mousePressEvent( TQMouseEvent* e );
};
-class QCheckBox;
-class QLabel;
-class QString;
+class TQCheckBox;
+class TQLabel;
+class TQString;
/* The name of this class was a very bad choice.
* CoordDialog is an abreviation vor Coordinate Dialog,
@@ -46,11 +47,12 @@ class QString;
*/
class CoordDialog : public KDialogBase {
Q_OBJECT
+ TQ_OBJECT
public:
- CoordDialog( const QString & file, QWidget *_parent=0, const char *name=0);
+ CoordDialog( const TQString & file, TQWidget *_parent=0, const char *name=0);
~CoordDialog();
- QString coords();
+ TQString coords();
static bool m_inversion;
@@ -59,12 +61,12 @@ class CoordDialog : public KDialogBase {
void resetText();
private:
- QString m_file;
- QString m_command;
+ TQString m_file;
+ TQString m_command;
DSLineEdit* filename;
- QCheckBox* checkInvert;
- QLabel* preview;
+ TQCheckBox* checkInvert;
+ TQLabel* preview;
};
#endif