diff options
Diffstat (limited to 'kabc')
-rw-r--r-- | kabc/frontend/mainWindow.ui.h | 4 | ||||
-rw-r--r-- | kabc/kabc2mutt/kabc2mutt.cpp | 4 | ||||
-rw-r--r-- | kabc/kabc2mutt/kabc2mutt.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/kabc/frontend/mainWindow.ui.h b/kabc/frontend/mainWindow.ui.h index 421c0d332..445b5945c 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 c12967862..96cf79232 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 855b48dbd..6b41fe24f 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; } |