diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /lib/util/kdevshellwidget.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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; }; |