From c6b29717327388357badda064ef1ced71932406e Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/svnfrontend/fronthelpers/checkoutinfo_impl.cpp | 4 ++-- src/svnfrontend/fronthelpers/checkoutinfo_impl.h | 2 +- src/svnfrontend/fronthelpers/propertyitem.cpp | 8 ++++---- src/svnfrontend/fronthelpers/propertyitem.h | 4 ++-- src/svnfrontend/fronthelpers/propertylist.cpp | 4 ++-- src/svnfrontend/fronthelpers/propertylist.h | 2 +- src/svnfrontend/fronthelpers/rangeinput_impl.cpp | 4 ++-- src/svnfrontend/fronthelpers/rangeinput_impl.h | 2 +- src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp | 4 ++-- src/svnfrontend/fronthelpers/revisionbuttonimpl.h | 2 +- 10 files changed, 18 insertions(+), 18 deletions(-) (limited to 'src/svnfrontend/fronthelpers') diff --git a/src/svnfrontend/fronthelpers/checkoutinfo_impl.cpp b/src/svnfrontend/fronthelpers/checkoutinfo_impl.cpp index 46b6452..0340049 100644 --- a/src/svnfrontend/fronthelpers/checkoutinfo_impl.cpp +++ b/src/svnfrontend/fronthelpers/checkoutinfo_impl.cpp @@ -31,8 +31,8 @@ #include #include -CheckoutInfo_impl::CheckoutInfo_impl(TQWidget *tqparent, const char *name) - :CheckoutInfo(tqparent, name) +CheckoutInfo_impl::CheckoutInfo_impl(TQWidget *parent, const char *name) + :CheckoutInfo(parent, name) { m_RangeInput->setStartOnly(true); m_RangeInput->setHeadDefault(); diff --git a/src/svnfrontend/fronthelpers/checkoutinfo_impl.h b/src/svnfrontend/fronthelpers/checkoutinfo_impl.h index 1816c74..64743f7 100644 --- a/src/svnfrontend/fronthelpers/checkoutinfo_impl.h +++ b/src/svnfrontend/fronthelpers/checkoutinfo_impl.h @@ -29,7 +29,7 @@ class CheckoutInfo_impl: public CheckoutInfo { Q_OBJECT TQ_OBJECT public: - CheckoutInfo_impl(TQWidget *tqparent = 0, const char *name = 0); + CheckoutInfo_impl(TQWidget *parent = 0, const char *name = 0); virtual ~CheckoutInfo_impl(); svn::Revision toRevision(); diff --git a/src/svnfrontend/fronthelpers/propertyitem.cpp b/src/svnfrontend/fronthelpers/propertyitem.cpp index 2e48324..3539fd7 100644 --- a/src/svnfrontend/fronthelpers/propertyitem.cpp +++ b/src/svnfrontend/fronthelpers/propertyitem.cpp @@ -2,16 +2,16 @@ #include #include -PropertyListViewItem::PropertyListViewItem(KListView *tqparent,const TQString&aName,const TQString&aValue) - : KListViewItem(tqparent),m_currentName(aName),m_startName(aName),m_currentValue(aValue),m_startValue(aValue),m_deleted(false) +PropertyListViewItem::PropertyListViewItem(KListView *parent,const TQString&aName,const TQString&aValue) + : KListViewItem(parent),m_currentName(aName),m_startName(aName),m_currentValue(aValue),m_startValue(aValue),m_deleted(false) { setMultiLinesEnabled(true); setText(0,startName()); setText(1,startValue()); } -PropertyListViewItem::PropertyListViewItem(KListView *tqparent) - : KListViewItem(tqparent),m_currentName(""),m_startName(""),m_currentValue(""),m_startValue(""),m_deleted(false) +PropertyListViewItem::PropertyListViewItem(KListView *parent) + : KListViewItem(parent),m_currentName(""),m_startName(""),m_currentValue(""),m_startValue(""),m_deleted(false) { setMultiLinesEnabled(true); setText(0,startName()); diff --git a/src/svnfrontend/fronthelpers/propertyitem.h b/src/svnfrontend/fronthelpers/propertyitem.h index c72af05..4a826b0 100644 --- a/src/svnfrontend/fronthelpers/propertyitem.h +++ b/src/svnfrontend/fronthelpers/propertyitem.h @@ -13,8 +13,8 @@ class PropertyListViewItem:public KListViewItem public: static const int _RTTI_ = 1001; - PropertyListViewItem(KListView *tqparent,const TQString&,const TQString&); - PropertyListViewItem(KListView *tqparent); + PropertyListViewItem(KListView *parent,const TQString&,const TQString&); + PropertyListViewItem(KListView *parent); virtual ~PropertyListViewItem(); const TQString&startName()const{return m_startName;} diff --git a/src/svnfrontend/fronthelpers/propertylist.cpp b/src/svnfrontend/fronthelpers/propertylist.cpp index 3f74410..0c7c705 100644 --- a/src/svnfrontend/fronthelpers/propertylist.cpp +++ b/src/svnfrontend/fronthelpers/propertylist.cpp @@ -25,8 +25,8 @@ #include -Propertylist::Propertylist(TQWidget *tqparent, const char *name) - : KListView(tqparent, name),m_commitit(false) +Propertylist::Propertylist(TQWidget *parent, const char *name) + : KListView(parent, name),m_commitit(false) { addColumn(i18n("Property")); addColumn(i18n("Value")); diff --git a/src/svnfrontend/fronthelpers/propertylist.h b/src/svnfrontend/fronthelpers/propertylist.h index be4cd81..5751340 100644 --- a/src/svnfrontend/fronthelpers/propertylist.h +++ b/src/svnfrontend/fronthelpers/propertylist.h @@ -31,7 +31,7 @@ class Propertylist : public KListView Q_OBJECT TQ_OBJECT public: - Propertylist(TQWidget *tqparent = 0, const char *name = 0); + Propertylist(TQWidget *parent = 0, const char *name = 0); ~Propertylist(); bool checkExisting(const TQString&aName,TQListViewItem*it=0); diff --git a/src/svnfrontend/fronthelpers/rangeinput_impl.cpp b/src/svnfrontend/fronthelpers/rangeinput_impl.cpp index e05e968..e21eaca 100644 --- a/src/svnfrontend/fronthelpers/rangeinput_impl.cpp +++ b/src/svnfrontend/fronthelpers/rangeinput_impl.cpp @@ -29,8 +29,8 @@ #include #include -Rangeinput_impl::Rangeinput_impl(TQWidget *tqparent, const char *name) - :RangeInputDlg(tqparent, name) +Rangeinput_impl::Rangeinput_impl(TQWidget *parent, const char *name) + :RangeInputDlg(parent, name) { m_startRevInput->setRange(0,INT_MAX,1,false); m_endRevInput->setRange(0,INT_MAX,1,false); diff --git a/src/svnfrontend/fronthelpers/rangeinput_impl.h b/src/svnfrontend/fronthelpers/rangeinput_impl.h index 8be32c9..e43e2b3 100644 --- a/src/svnfrontend/fronthelpers/rangeinput_impl.h +++ b/src/svnfrontend/fronthelpers/rangeinput_impl.h @@ -28,7 +28,7 @@ class Rangeinput_impl: public RangeInputDlg { Q_OBJECT TQ_OBJECT public: - Rangeinput_impl(TQWidget *tqparent = 0, const char *name = 0); + Rangeinput_impl(TQWidget *parent = 0, const char *name = 0); virtual ~Rangeinput_impl(); typedef TQPair revision_range; diff --git a/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp b/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp index 3d97dce..91a72bb 100644 --- a/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp +++ b/src/svnfrontend/fronthelpers/revisionbuttonimpl.cpp @@ -29,8 +29,8 @@ #include -RevisionButtonImpl::RevisionButtonImpl(TQWidget *tqparent, const char *name) - :RevisionButton(tqparent, name),m_Rev(svn::Revision::UNDEFINED),m_noWorking(false) +RevisionButtonImpl::RevisionButtonImpl(TQWidget *parent, const char *name) + :RevisionButton(parent, name),m_Rev(svn::Revision::UNDEFINED),m_noWorking(false) { } diff --git a/src/svnfrontend/fronthelpers/revisionbuttonimpl.h b/src/svnfrontend/fronthelpers/revisionbuttonimpl.h index a2265b4..b8918c8 100644 --- a/src/svnfrontend/fronthelpers/revisionbuttonimpl.h +++ b/src/svnfrontend/fronthelpers/revisionbuttonimpl.h @@ -28,7 +28,7 @@ class RevisionButtonImpl: public RevisionButton { TQ_OBJECT public: - RevisionButtonImpl(TQWidget *tqparent = 0, const char *name = 0); + RevisionButtonImpl(TQWidget *parent = 0, const char *name = 0); virtual ~RevisionButtonImpl(); virtual void setRevision(const svn::Revision&aRev); -- cgit v1.2.1