From d6f8bbb45b267065a6907e71ff9c98bb6d161241 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:56:07 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- vcs/cvsservice/cvsprocesswidget.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'vcs/cvsservice/cvsprocesswidget.h') 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 -#include +#include +#include #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; }; -- cgit v1.2.3