summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/modifiedthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnfrontend/modifiedthread.h')
-rw-r--r--src/svnfrontend/modifiedthread.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnfrontend/modifiedthread.h b/src/svnfrontend/modifiedthread.h
index 93028e8..ea8a58c 100644
--- a/src/svnfrontend/modifiedthread.h
+++ b/src/svnfrontend/modifiedthread.h
@@ -27,27 +27,27 @@
#include "eventnumbers.h"
#include "frontendtypes.h"
-#include <qthread.h>
-#include <qevent.h>
+#include <tqthread.h>
+#include <tqevent.h>
-class QObject;
+class TQObject;
-class CheckModifiedThread:public QThread
+class CheckModifiedThread:public TQThread
{
public:
- CheckModifiedThread(QObject*,const QString&what,bool _updates=false);
+ CheckModifiedThread(TQObject*,const TQString&what,bool _updates=false);
virtual ~CheckModifiedThread();
virtual void run();
virtual void cancelMe();
virtual const svn::StatusEntries&getList()const;
protected:
- QMutex mutex;
+ TQMutex mutex;
svn::Client* m_Svnclient;
svn::ContextP m_CurrentContext;
ThreadContextListenerP m_ContextListener;
- QObject*m_Parent;
- QString m_what;
+ TQObject*m_Parent;
+ TQString m_what;
bool m_updates;
svn::StatusEntries m_Cache;
};