summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/annotatepage.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/annotatepage.h')
-rw-r--r--vcs/cvsservice/annotatepage.h26
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