summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/cvslogpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/cvslogpage.h')
-rw-r--r--vcs/cvsservice/cvslogpage.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/vcs/cvsservice/cvslogpage.h b/vcs/cvsservice/cvslogpage.h
index a3480e91..d618500c 100644
--- a/vcs/cvsservice/cvslogpage.h
+++ b/vcs/cvsservice/cvslogpage.h
@@ -13,7 +13,7 @@
#define CVSLOGPAGE_H
#include "cvsservicedcopIface.h"
-#include <qwidget.h>
+#include <tqwidget.h>
#include "bufferedstringreader.h"
class CvsJob_stub;
@@ -25,36 +25,36 @@ Implementation for the form displaying 'cvs log' output.
@author KDevelop Authors
*/
-class CVSLogPage : public QWidget, virtual public CVSServiceDCOPIface
+class CVSLogPage : public TQWidget, virtual public CVSServiceDCOPIface
{
Q_OBJECT
public:
- CVSLogPage( CvsService_stub *cvsService, QWidget *parent=0, const char *name=0, int flags=0 );
+ CVSLogPage( CvsService_stub *cvsService, TQWidget *parent=0, const char *name=0, int flags=0 );
virtual ~CVSLogPage();
- void startLog( const QString &workDir, const QString &pathName );
+ void startLog( const TQString &workDir, const TQString &pathName );
void cancel();
signals:
// Emitted when the user click upon a link
- void diffRequested( const QString &pathName, const QString &revA, const QString &revB );
+ void diffRequested( const TQString &pathName, const TQString &revA, const TQString &revB );
private slots:
- void slotLinkClicked( const QString &link );
+ void slotLinkClicked( const TQString &link );
// 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 );
//private:
-// void parseLogContent( const QString& text );
+// void parseLogContent( const TQString& text );
private:
- QString m_pathName;
- QTextBrowser *m_textBrowser;
- QString m_logTextBackup;
+ TQString m_pathName;
+ TQTextBrowser *m_textBrowser;
+ TQString m_logTextBackup;
BufferedStringReader m_outputBuffer;
- QStringList m_diffStrings;
+ TQStringList m_diffStrings;
CvsService_stub *m_cvsService;
CvsJob_stub *m_cvsLogJob;