diff options
Diffstat (limited to 'kaddressbook/imagewidget.cpp')
-rw-r--r-- | kaddressbook/imagewidget.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kaddressbook/imagewidget.cpp b/kaddressbook/imagewidget.cpp index b4219322c..5e1dc85f1 100644 --- a/kaddressbook/imagewidget.cpp +++ b/kaddressbook/imagewidget.cpp @@ -47,8 +47,8 @@ #include "imagewidget.h" -ImageLoader::ImageLoader( TQWidget *tqparent ) - : TQObject( 0, "ImageLoader" ), mParent( tqparent ) +ImageLoader::ImageLoader( TQWidget *parent ) + : TQObject( 0, "ImageLoader" ), mParent( parent ) { } @@ -103,8 +103,8 @@ KABC::Picture ImageLoader::loadPicture( const KURL &url, bool *ok ) } -ImageButton::ImageButton( const TQString &title, TQWidget *tqparent ) - : TQPushButton( title, tqparent ), +ImageButton::ImageButton( const TQString &title, TQWidget *parent ) + : TQPushButton( title, parent ), mReadOnly( false ), mImageLoader( 0 ) { setAcceptDrops( true ); @@ -247,8 +247,8 @@ void ImageButton::clear() } ImageBaseWidget::ImageBaseWidget( const TQString &title, - TQWidget *tqparent, const char *name ) - : TQWidget( tqparent, name ), mReadOnly( false ) + TQWidget *parent, const char *name ) + : TQWidget( parent, name ), mReadOnly( false ) { mImageLoader = new ImageLoader( this ); @@ -290,8 +290,8 @@ KABC::Picture ImageBaseWidget::image() const } -ImageWidget::ImageWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name ) - : KAB::ContactEditorWidget( ab, tqparent, name ) +ImageWidget::ImageWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name ) + : KAB::ContactEditorWidget( ab, parent, name ) { TQHBoxLayout *tqlayout = new TQHBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() ); |