summaryrefslogtreecommitdiffstats
path: root/src/kdesvnview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kdesvnview.cpp')
-rw-r--r--src/kdesvnview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kdesvnview.cpp b/src/kdesvnview.cpp
index 87db570..fa26536 100644
--- a/src/kdesvnview.cpp
+++ b/src/kdesvnview.cpp
@@ -58,8 +58,8 @@
#include <kdialogbase.h>
#include <kprogress.h>
-kdesvnView::kdesvnView(KActionCollection*aCollection,TQWidget *tqparent,const char*name,bool full)
- : TQWidget(tqparent,name),svn::repository::RepositoryListener(),m_Collection(aCollection),
+kdesvnView::kdesvnView(KActionCollection*aCollection,TQWidget *parent,const char*name,bool full)
+ : TQWidget(parent,name),svn::repository::RepositoryListener(),m_Collection(aCollection),
m_currentURL("")
{
Q_UNUSED(full);
@@ -89,7 +89,7 @@ kdesvnView::kdesvnView(KActionCollection*aCollection,TQWidget *tqparent,const ch
connect(m_flist,TQT_SIGNAL(sigLogMessage(const TQString&)),this,TQT_SLOT(slotAppendLog(const TQString&)));
connect(m_flist,TQT_SIGNAL(changeCaption(const TQString&)),this,TQT_SLOT(slotSetTitle(const TQString&)));
connect(m_flist,TQT_SIGNAL(sigShowPopup(const TQString&,TQWidget**)),this,TQT_SLOT(slotDispPopup(const TQString&,TQWidget**)));
- connect(m_flist,TQT_SIGNAL(sigUrlOpend(bool)),tqparent,TQT_SLOT(slotUrlOpened(bool)));
+ connect(m_flist,TQT_SIGNAL(sigUrlOpend(bool)),parent,TQT_SLOT(slotUrlOpened(bool)));
connect(m_flist,TQT_SIGNAL(sigSwitchUrl(const KURL&)),this,TQT_SIGNAL(sigSwitchUrl(const KURL&)));
connect(m_flist,TQT_SIGNAL(sigUrlChanged( const TQString& )),this,TQT_SLOT(slotUrlChanged(const TQString&)));
connect(m_flist,TQT_SIGNAL(sigCachetqStatus(TQ_LONG,TQ_LONG)),this,TQT_SLOT(fillCachetqStatus(TQ_LONG,TQ_LONG)));