diff options
Diffstat (limited to 'vcs/cvsservice/cvsprocesswidget.h')
-rw-r--r-- | vcs/cvsservice/cvsprocesswidget.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/vcs/cvsservice/cvsprocesswidget.h b/vcs/cvsservice/cvsprocesswidget.h index cb55205c..3a229a45 100644 --- a/vcs/cvsservice/cvsprocesswidget.h +++ b/vcs/cvsservice/cvsprocesswidget.h @@ -12,8 +12,8 @@ #ifndef _CVSPROCESSWIDGET_H_ #define _CVSPROCESSWIDGET_H_ -#include <qtextedit.h> -#include <qstringlist.h> +#include <tqtextedit.h> +#include <tqstringlist.h> #include "cvsservicedcopIface.h" #include "bufferedstringreader.h" @@ -24,12 +24,12 @@ class CvsJob_stub; class CvsService_stub; class QStyleSheetItem; -class CvsProcessWidget : public QTextEdit, virtual public CVSServiceDCOPIface +class CvsProcessWidget : public TQTextEdit, virtual public CVSServiceDCOPIface { Q_OBJECT public: CvsProcessWidget( CvsService_stub *service, CvsServicePart *part, - QWidget *parent, const char *name ); + TQWidget *parent, const char *name ); virtual ~CvsProcessWidget(); bool startJob( const DCOPRef &aJob ); @@ -43,22 +43,22 @@ public: virtual void clear(); - QStringList output() const { return m_output; } - QStringList errors() const { return m_errors; } + TQStringList output() const { return m_output; } + TQStringList errors() const { return m_errors; } //private slots: //! DCOP Iface virtual void slotJobExited( bool normalExit, int exitStatus ); - virtual void slotReceivedOutput( QString someOutput ); - virtual void slotReceivedErrors( QString someErrors ); + virtual void slotReceivedOutput( TQString someOutput ); + virtual void slotReceivedErrors( TQString someErrors ); signals: void jobFinished( bool normalExit, int exitStatus ); private: - void showInfo( const QStringList &msg ); - void showError( const QStringList &msg ); - void showOutput( const QStringList &msg ); + void showInfo( const TQStringList &msg ); + void showError( const TQStringList &msg ); + void showOutput( const TQStringList &msg ); CvsServicePart *m_part; CvsService_stub *m_service; @@ -69,7 +69,7 @@ private: BufferedStringReader m_outputBuffer, m_errorBuffer; - QStringList m_output, + TQStringList m_output, m_errors; }; |