summaryrefslogtreecommitdiffstats
path: root/kabc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch)
tree0212ba6d2c749043134005a41f2bd0379619d40f /kabc
parent4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff)
downloadtdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz
tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kabc')
-rw-r--r--kabc/frontend/mainWindow.ui.h4
-rw-r--r--kabc/kabc2mutt/kabc2mutt.cpp4
-rw-r--r--kabc/kabc2mutt/kabc2mutt.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/kabc/frontend/mainWindow.ui.h b/kabc/frontend/mainWindow.ui.h
index 421c0d33..445b5945 100644
--- a/kabc/frontend/mainWindow.ui.h
+++ b/kabc/frontend/mainWindow.ui.h
@@ -20,8 +20,8 @@ using namespace KABC;
class AddresseeItem : public TQListViewItem
{
public:
- AddresseeItem( TQListView *tqparent, const Addressee &a ) :
- TQListViewItem( tqparent, a.realName(), a.uid() ), mAddressee( a ) {}
+ AddresseeItem( TQListView *parent, const Addressee &a ) :
+ TQListViewItem( parent, a.realName(), a.uid() ), mAddressee( a ) {}
void setAddressee( const Addressee &a ) { mAddressee = a; }
Addressee &addressee() { return mAddressee; }
diff --git a/kabc/kabc2mutt/kabc2mutt.cpp b/kabc/kabc2mutt/kabc2mutt.cpp
index c1296786..96cf7923 100644
--- a/kabc/kabc2mutt/kabc2mutt.cpp
+++ b/kabc/kabc2mutt/kabc2mutt.cpp
@@ -29,8 +29,8 @@
static std::ostream & operator<< ( std::ostream &os, const TQString &s );
-KABC2Mutt::KABC2Mutt( TQObject *tqparent, const char *name )
- : TQObject( tqparent, name ), mFormat( Aliases ),
+KABC2Mutt::KABC2Mutt( TQObject *parent, const char *name )
+ : TQObject( parent, name ), mFormat( Aliases ),
mIgnoreCase( false ), mAllAddresses( false ),
mAlternateKeyFormat( false ),
mAddressBook( 0 )
diff --git a/kabc/kabc2mutt/kabc2mutt.h b/kabc/kabc2mutt/kabc2mutt.h
index 855b48db..6b41fe24 100644
--- a/kabc/kabc2mutt/kabc2mutt.h
+++ b/kabc/kabc2mutt/kabc2mutt.h
@@ -31,7 +31,7 @@ class KABC2Mutt : public TQObject
enum Format { Aliases, Query };
- KABC2Mutt( TQObject *tqparent, const char *name = 0 );
+ KABC2Mutt( TQObject *parent, const char *name = 0 );
void setQuery( const TQString &query ) { mQuery = query; }
void setFormat( Format format ) { mFormat = format; }