summaryrefslogtreecommitdiffstats
path: root/kaddressbook/imagewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/imagewidget.h')
-rw-r--r--kaddressbook/imagewidget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/imagewidget.h b/kaddressbook/imagewidget.h
index 52b9c9c6..6dbac195 100644
--- a/kaddressbook/imagewidget.h
+++ b/kaddressbook/imagewidget.h
@@ -41,7 +41,7 @@ class ImageLoader : public TQObject
TQ_OBJECT
public:
- ImageLoader( TQWidget *tqparent );
+ ImageLoader( TQWidget *parent );
KABC::Picture loadPicture( const KURL &url, bool *ok );
@@ -59,7 +59,7 @@ class ImageButton : public TQPushButton
TQ_OBJECT
public:
- ImageButton( const TQString &title, TQWidget *tqparent );
+ ImageButton( const TQString &title, TQWidget *parent );
void setReadOnly( bool readOnly );
@@ -101,7 +101,7 @@ class ImageBaseWidget : public TQWidget
TQ_OBJECT
public:
- ImageBaseWidget( const TQString &title, TQWidget *tqparent, const char *name = 0 );
+ ImageBaseWidget( const TQString &title, TQWidget *parent, const char *name = 0 );
~ImageBaseWidget();
/**
@@ -129,7 +129,7 @@ class ImageBaseWidget : public TQWidget
class ImageWidget : public KAB::ContactEditorWidget
{
public:
- ImageWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name = 0 );
+ ImageWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 );
void loadContact( KABC::Addressee *addr );
void storeContact( KABC::Addressee *addr );
@@ -145,9 +145,9 @@ class ImageWidget : public KAB::ContactEditorWidget
class ImageWidgetFactory : public KAB::ContactEditorWidgetFactory
{
public:
- KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name )
+ KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name )
{
- return new ImageWidget( ab, tqparent, name );
+ return new ImageWidget( ab, parent, name );
}
TQString pageIdentifier() const { return "misc"; }