summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/changelog.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/changelog.h')
-rw-r--r--vcs/cvsservice/changelog.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/vcs/cvsservice/changelog.h b/vcs/cvsservice/changelog.h
index 3d512f95..a1b50ffa 100644
--- a/vcs/cvsservice/changelog.h
+++ b/vcs/cvsservice/changelog.h
@@ -12,7 +12,7 @@
#ifndef CHANGELOG_H
#define CHANGELOG_H
-#include <qstringlist.h>
+#include <tqstringlist.h>
/**
A class which abstracts the building of an entry in the ChangeLog file (it formats name, e-mail and text).
@@ -26,20 +26,20 @@ public:
~ChangeLogEntry();
//! Add a single line to the lines for this entry
- void addLine( const QString &aLine );
+ void addLine( const TQString &aLine );
//! Add a bunch of lines for this entry
- void addLines( const QStringList &someLines );
+ void addLines( const TQStringList &someLines );
//! Pretty format for this entry: you may insert a line tag (such as tab ("\t") or 4 spaces (" ")
//! or whatever you want (such as "\t * ")
- QString toString( const QString &startLineString = QString::null ) const;
+ TQString toString( const TQString &startLineString = TQString::null ) const;
//! Once the entry is completed one would like to write on a file! (You may add on start of file
//! prepend == true, or append on tail (prepend == false)
- void addToLog( const QString &logFilePath, const bool prepend = true, const QString &startLineString = "\t" );
+ void addToLog( const TQString &logFilePath, const bool prepend = true, const TQString &startLineString = "\t" );
- QString authorName,
+ TQString authorName,
authorEmail,
date;
- QStringList lines;
+ TQStringList lines;
};
#endif