summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/stty.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/debugger/stty.h')
-rw-r--r--languages/cpp/debugger/stty.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/languages/cpp/debugger/stty.h b/languages/cpp/debugger/stty.h
index 639e8417..7c026251 100644
--- a/languages/cpp/debugger/stty.h
+++ b/languages/cpp/debugger/stty.h
@@ -27,8 +27,8 @@
class QSocketNotifier;
-#include <qobject.h>
-#include <qstring.h>
+#include <tqobject.h>
+#include <tqstring.h>
namespace GDBDebugger
{
@@ -38,10 +38,10 @@ class STTY : public QObject
Q_OBJECT
public:
- STTY(bool ext=false, const QString &termAppName=QString());
+ STTY(bool ext=false, const TQString &termAppName=TQString());
~STTY();
- QString getSlave() { return ttySlave; };
+ TQString getSlave() { return ttySlave; };
void readRemaining();
private slots:
@@ -53,13 +53,13 @@ signals:
private:
int findTTY();
- bool findExternalTTY(const QString &termApp);
+ bool findExternalTTY(const TQString &termApp);
private:
int fout;
int ferr;
- QSocketNotifier *out;
- QString ttySlave;
+ TQSocketNotifier *out;
+ TQString ttySlave;
int pid_;
bool external_;