summaryrefslogtreecommitdiffstats
path: root/parts/filter/shellinsertdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'parts/filter/shellinsertdlg.h')
-rw-r--r--parts/filter/shellinsertdlg.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/parts/filter/shellinsertdlg.h b/parts/filter/shellinsertdlg.h
index c6f0696b..cb0992c9 100644
--- a/parts/filter/shellinsertdlg.h
+++ b/parts/filter/shellinsertdlg.h
@@ -12,7 +12,7 @@
#ifndef _SHELLINSERTDLG_H_
#define _SHELLINSERTDLG_H_
-#include <qdialog.h>
+#include <tqdialog.h>
class QComboBox;
class QPushButton;
@@ -30,20 +30,20 @@ public:
virtual int exec();
- QString text() const
- { return QString::fromLocal8Bit(m_str); }
+ TQString text() const
+ { return TQString::fromLocal8Bit(m_str); }
private slots:
void slotStartClicked();
void slotReceivedStdout(KProcess *, char *text, int len);
void slotProcessExited(KProcess *);
- void executeTextChanged( const QString &text);
+ void executeTextChanged( const TQString &text);
private:
- QPushButton *start_button, *cancel_button;
- QComboBox *combo;
+ TQPushButton *start_button, *cancel_button;
+ TQComboBox *combo;
KProcess *m_proc;
- QCString m_str;
+ TQCString m_str;
};
#endif