diff options
Diffstat (limited to 'kaddressbook/views/cardview.cpp')
-rw-r--r-- | kaddressbook/views/cardview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/views/cardview.cpp b/kaddressbook/views/cardview.cpp index b790b0c3f..df956398e 100644 --- a/kaddressbook/views/cardview.cpp +++ b/kaddressbook/views/cardview.cpp @@ -42,8 +42,8 @@ class CardViewTip : public TQLabel { public: - CardViewTip( TQWidget *tqparent = 0, const char *name = 0 ) - : TQLabel( tqparent, name ) + CardViewTip( TQWidget *parent = 0, const char *name = 0 ) + : TQLabel( parent, name ) { setPalette( TQToolTip::palette() ); setFrameStyle( Panel | Plain ); @@ -192,8 +192,8 @@ class CardViewItemPrivate }; -CardViewItem::CardViewItem( CardView *tqparent, const TQString &caption ) - : d( new CardViewItemPrivate() ), mView( tqparent ) +CardViewItem::CardViewItem( CardView *parent, const TQString &caption ) + : d( new CardViewItemPrivate() ), mView( parent ) { d->mCaption = caption; @@ -569,8 +569,8 @@ CardViewItem::Field *CardViewItem::fieldAt( const TQPoint & itempos ) const } -CardView::CardView( TQWidget *tqparent, const char *name ) - : TQScrollView( tqparent, name ), +CardView::CardView( TQWidget *parent, const char *name ) + : TQScrollView( parent, name ), d( new CardViewPrivate() ) { d->mItemList.setAutoDelete( true ); |