summaryrefslogtreecommitdiffstats
path: root/src/svnqt/cache/ReposLog.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/cache/ReposLog.hpp')
-rw-r--r--src/svnqt/cache/ReposLog.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnqt/cache/ReposLog.hpp b/src/svnqt/cache/ReposLog.hpp
index e81a5c9..1d28037 100644
--- a/src/svnqt/cache/ReposLog.hpp
+++ b/src/svnqt/cache/ReposLog.hpp
@@ -5,8 +5,8 @@
#include "svnqt/svnqttypes.hpp"
#include "svnqt/revision.hpp"
-#include <qsqldatabase.h>
-#include <qstring.h>
+#include <tqsqldatabase.h>
+#include <tqstring.h>
namespace svn
{
@@ -16,26 +16,26 @@ class Client;
namespace cache
{
-class SVNQT_EXPORT ReposLog
+class SVNTQT_EXPORT ReposLog
{
protected:
svn::Client*m_Client;
- mutable QDataBase m_Database;
- QString m_ReposRoot;
+ mutable TQDataBase m_Database;
+ TQString m_ReposRoot;
svn::Revision m_latestHead;
//! internal insert.
bool _insertLogEntry(const svn::LogEntry&);
bool checkFill(svn::Revision&_start,svn::Revision&_end,bool checkHead);
public:
- ReposLog(svn::Client*aClient,const QString&aRepository=QString::null);
+ ReposLog(svn::Client*aClient,const TQString&aRepository=TQString());
- QString ReposRoot() const
+ TQString ReposRoot() const
{
return m_ReposRoot;
}
- QDataBase Database() const
+ TQDataBase Database() const
{
return m_Database;
}