summaryrefslogtreecommitdiffstats
path: root/src/svnqt/cache/DatabaseException.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/cache/DatabaseException.cpp')
-rw-r--r--src/svnqt/cache/DatabaseException.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnqt/cache/DatabaseException.cpp b/src/svnqt/cache/DatabaseException.cpp
index 85812ab..880c041 100644
--- a/src/svnqt/cache/DatabaseException.cpp
+++ b/src/svnqt/cache/DatabaseException.cpp
@@ -1,12 +1,12 @@
#include "DatabaseException.hpp"
/*!
- \fn svn::cache::DatabaseException::DatabaseException(const QString&msg,int aNumber)throw()
+ \fn svn::cache::DatabaseException::DatabaseException(const TQString&msg,int aNumber)throw()
*/
-svn::cache::DatabaseException::DatabaseException(const QString&msg,int aNumber)throw()
+svn::cache::DatabaseException::DatabaseException(const TQString&msg,int aNumber)throw()
: Exception(msg),m_number(aNumber)
{
if (aNumber>-1) {
- setMessage(QString("(Code %1) %2").arg(aNumber).arg(msg));
+ setMessage(TQString("(Code %1) %2").tqarg(aNumber).tqarg(msg));
}
}