diff options
Diffstat (limited to 'src/svnfrontend/modifiedthread.cpp')
-rw-r--r-- | src/svnfrontend/modifiedthread.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/svnfrontend/modifiedthread.cpp b/src/svnfrontend/modifiedthread.cpp index f7f6c90..21b71d5 100644 --- a/src/svnfrontend/modifiedthread.cpp +++ b/src/svnfrontend/modifiedthread.cpp @@ -23,17 +23,17 @@ #include "src/svnqt/svnqttypes.hpp" -#include <qobject.h> +#include <tqobject.h> #include <kdebug.h> #include <kapplication.h> -CheckModifiedThread::CheckModifiedThread(QObject*_parent,const QString&what,bool _updates) - : QThread(),mutex(),m_ContextListener(0) +CheckModifiedThread::CheckModifiedThread(TQObject*_tqparent,const TQString&what,bool _updates) + : TQThread(),mutex(),m_ContextListener(0) { - m_Parent = _parent; + m_Parent = _tqparent; m_CurrentContext = new svn::Context(); m_ContextListener = new ThreadContextListener(m_Parent); - QObject::connect(m_ContextListener,SIGNAL(sendNotify(const QString&)),m_Parent,SLOT(slotNotifyMessage(const QString&))); + TQObject::connect(m_ContextListener,TQT_SIGNAL(sendNotify(const TQString&)),m_Parent,TQT_SLOT(slotNotifyMessage(const TQString&))); m_CurrentContext->setListener(m_ContextListener); m_what = what; @@ -63,7 +63,7 @@ void CheckModifiedThread::run() { // what must be cleaned! svn::Revision where = svn::Revision::HEAD; - QString ex; + TQString ex; try { // rec all up noign m_Cache = m_Svnclient->status(m_what,svn::DepthInfinity,false,m_updates,false,where); @@ -72,7 +72,7 @@ void CheckModifiedThread::run() } KApplication*k = KApplication::kApplication(); if (k) { - QCustomEvent*ev = new QCustomEvent(EVENT_THREAD_FINISHED); + TQCustomEvent*ev = new TQCustomEvent(EVENT_THREAD_FINISHED); ev->setData((void*)this); k->postEvent(m_Parent,ev); } |