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 /vcs/cvsservice/annotatepage.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 'vcs/cvsservice/annotatepage.h')
-rw-r--r-- | vcs/cvsservice/annotatepage.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/vcs/cvsservice/annotatepage.h b/vcs/cvsservice/annotatepage.h index 2a062804..b6a52b66 100644 --- a/vcs/cvsservice/annotatepage.h +++ b/vcs/cvsservice/annotatepage.h @@ -13,9 +13,9 @@ #define ANNOTATEPAGE_H #include "cvsservicedcopIface.h" -#include <qwidget.h> -#include <qmap.h> -#include <qlistview.h> +#include <tqwidget.h> +#include <tqmap.h> +#include <tqlistview.h> class CvsJob_stub; class CvsService_stub; @@ -34,7 +34,7 @@ class KPushButton; * * @author Robert Gruber <rgruber@users.sourceforge.net> */ -class AnnotatePage : public QWidget, virtual public CVSServiceDCOPIface +class AnnotatePage : public TQWidget, virtual public CVSServiceDCOPIface { Q_OBJECT @@ -42,7 +42,7 @@ class AnnotatePage : public QWidget, virtual public CVSServiceDCOPIface friend class AnnotateView; public: - AnnotatePage( CvsService_stub *cvsService, QWidget *parent=0, const char *name=0, int flags=0 ); + AnnotatePage( CvsService_stub *cvsService, TQWidget *parent=0, const char *name=0, int flags=0 ); virtual ~AnnotatePage(); /** @@ -50,7 +50,7 @@ public: * @param pathName The filename to annotate * @param revision The CVS revision number */ - void startAnnotate( const QString pathName, const QString revision="" ); + void startAnnotate( const TQString pathName, const TQString revision="" ); /** * Cancels the current operation if any @@ -64,13 +64,13 @@ signals: * a new page with the annotate output for the given revision. * @param rev The revision for which a new annotate run is requested */ - void requestAnnotate(const QString rev); + void requestAnnotate(const TQString rev); 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 ); /** * This slot is connected to the button next to m_leRevision. @@ -84,7 +84,7 @@ private: * This method is executed after the cvs annotate job finished. * It parses the output and passes it to the AnnotateView */ - void parseAnnotateOutput(QStringList& lines); + void parseAnnotateOutput(TQStringList& lines); /** @@ -92,7 +92,7 @@ private: * Everytime slotReceivedOutput() is called by dcop * we append the gained data to this buffer. */ - QString m_output; + TQString m_output; /** * This is the AnnotateView. It gets nested into this page. */ @@ -100,11 +100,11 @@ private: /** * The file for which this page holds the annotate output. */ - QString m_pathName; + TQString m_pathName; /** * Maps the checkin comments to revision numbers */ - QMap<QString, QString> m_comments; + TQMap<TQString, TQString> m_comments; /** * With this KLineEdit and the KPushButton next to it |