diff options
Diffstat (limited to 'lib/util/kdevshellwidget.h')
-rw-r--r-- | lib/util/kdevshellwidget.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/util/kdevshellwidget.h b/lib/util/kdevshellwidget.h index 3f1500aa..69198a7a 100644 --- a/lib/util/kdevshellwidget.h +++ b/lib/util/kdevshellwidget.h @@ -13,9 +13,9 @@ #ifndef KDEVSHELLWIDGET_H #define KDEVSHELLWIDGET_H -#include <qstrlist.h> -#include <qvbox.h> -#include <qguardedptr.h> +#include <tqstrlist.h> +#include <tqvbox.h> +#include <tqguardedptr.h> class KProcess; namespace KParts @@ -29,7 +29,7 @@ class KDevShellWidget : public QVBox Q_OBJECT public: - KDevShellWidget(QWidget *parent = 0, const char *name = 0); + KDevShellWidget(TQWidget *parent = 0, const char *name = 0); virtual ~KDevShellWidget(); /** @@ -37,7 +37,7 @@ public: * @param shell The shell name, for example 'irb' or '/bin/bash' * @param arguments Any optional arguments */ - void setShell( const QString & shell, const QStrList & arguments = QStrList() ); + void setShell( const TQString & shell, const TQStrList & arguments = TQStrList() ); /** * Executes the previously set shell. If @ref setShell wasn't called before @@ -55,7 +55,7 @@ public: * Send text to the running shell * @param text The text to send to the shell */ - void sendInput( const QString & text ); + void sendInput( const TQString & text ); /** * Call to check if the shell is currently running @@ -80,7 +80,7 @@ signals: * This signal will be emitted when the process receives data * @param text received data */ - void receivedData( const QString & ); + void receivedData( const TQString & ); private slots: void partDestroyed(); @@ -88,9 +88,9 @@ private slots: void setAutoReactivateOnCloseDelayed( ); private: - QGuardedPtr<KParts::ReadOnlyPart> m_konsolePart; - QString m_shellName; - QStrList m_shellArguments; + TQGuardedPtr<KParts::ReadOnlyPart> m_konsolePart; + TQString m_shellName; + TQStrList m_shellArguments; bool m_doAutoActivate; bool m_isRunning; }; |