summaryrefslogtreecommitdiffstats
path: root/src/svnqt/conflictresult.hpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
commitd7633c195a464e4d344ada9eea61afd10110598a (patch)
tree1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/svnqt/conflictresult.hpp
parent3fa7eb804f67b2789f128075cc2522f398640250 (diff)
downloadtdesvn-d7633c195a464e4d344ada9eea61afd10110598a.tar.gz
tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.zip
Port kdesvn to TQt4
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnqt/conflictresult.hpp')
-rw-r--r--src/svnqt/conflictresult.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/svnqt/conflictresult.hpp b/src/svnqt/conflictresult.hpp
index 0dfb426..2b72afb 100644
--- a/src/svnqt/conflictresult.hpp
+++ b/src/svnqt/conflictresult.hpp
@@ -27,11 +27,11 @@ struct svn_wc_conflict_result_t;
#include "svnqt/svnqt_defines.hpp"
#include <svn_types.h>
-#include <qstring.h>
+#include <tqstring.h>
namespace svn {
-class SVNQT_EXPORT ConflictResult
+class SVNTQT_EXPORT ConflictResult
{
public:
enum ConflictChoice {
@@ -50,11 +50,11 @@ class SVNQT_EXPORT ConflictResult
*/
ConflictResult(const svn_wc_conflict_result_t*);
- const QString& mergedFile()const
+ const TQString& mergedFile()const
{
return m_MergedFile;
}
- void setMergedFile(const QString&aMergedfile);
+ void setMergedFile(const TQString&aMergedfile);
ConflictChoice choice()const
{
@@ -70,7 +70,7 @@ class SVNQT_EXPORT ConflictResult
//! Merged file
/*! will only used if m_choice is ChooseMerged
*/
- QString m_MergedFile;
+ TQString m_MergedFile;
};
}