summaryrefslogtreecommitdiffstats
path: root/parts/filter/shellfilterdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'parts/filter/shellfilterdlg.h')
-rw-r--r--parts/filter/shellfilterdlg.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/parts/filter/shellfilterdlg.h b/parts/filter/shellfilterdlg.h
index 3307c060..6642eb92 100644
--- a/parts/filter/shellfilterdlg.h
+++ b/parts/filter/shellfilterdlg.h
@@ -12,7 +12,7 @@
#ifndef _SHELLFILTERDLG_H_
#define _SHELLFILTERDLG_H_
-#include <qdialog.h>
+#include <tqdialog.h>
class QComboBox;
class QPushButton;
@@ -30,9 +30,9 @@ public:
virtual int exec();
- void setText(const QString &str)
+ void setText(const TQString &str)
{ m_instr = str.local8Bit(); }
- QString text() const
+ TQString text() const
{ return m_outstr; }
private slots:
@@ -42,11 +42,11 @@ private slots:
void slotProcessExited(KProcess *);
private:
- QPushButton *start_button, *cancel_button;
- QComboBox *combo;
+ TQPushButton *start_button, *cancel_button;
+ TQComboBox *combo;
KProcess *m_proc;
- QCString m_instr;
- QString m_outstr;
+ TQCString m_instr;
+ TQString m_outstr;
};
#endif