summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/threadcontextlistenerdata.h
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/svnfrontend/threadcontextlistenerdata.h
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/svnfrontend/threadcontextlistenerdata.h')
-rw-r--r--src/svnfrontend/threadcontextlistenerdata.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnfrontend/threadcontextlistenerdata.h b/src/svnfrontend/threadcontextlistenerdata.h
index b225161..82726a7 100644
--- a/src/svnfrontend/threadcontextlistenerdata.h
+++ b/src/svnfrontend/threadcontextlistenerdata.h
@@ -22,8 +22,8 @@
#include "src/svnqt/context_listener.hpp"
-#include <qthread.h>
-#include <qstring.h>
+#include <tqthread.h>
+#include <tqstring.h>
/**
@author Rajko Albrecht
@@ -38,7 +38,7 @@ public:
bool noProgress;
/* only one callback at time */
- QWaitCondition m_trustpromptWait;
+ TQWaitCondition m_trustpromptWait;
/* safed due condition above */
/* this variables are for the event handling across threads */
@@ -52,13 +52,13 @@ public:
/* login into server */
struct slogin_data
{
- QString user,password,realm;
+ TQString user,password,realm;
bool maysave,ok;
};
struct slog_message
{
- QString msg;
+ TQString msg;
bool ok;
const svn::CommitItemList*_items;
slog_message(){_items = 0;}
@@ -66,19 +66,19 @@ public:
struct scert_pw
{
- QString password,realm;
+ TQString password,realm;
bool ok,maysave;
};
struct scert_file
{
- QString certfile;
+ TQString certfile;
bool ok;
};
struct snotify
{
- QString msg;
+ TQString msg;
};
};