diff options
Diffstat (limited to 'src/gui/imagewidget.cpp')
-rw-r--r-- | src/gui/imagewidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/imagewidget.cpp b/src/gui/imagewidget.cpp index 556d93d..75fe95f 100644 --- a/src/gui/imagewidget.cpp +++ b/src/gui/imagewidget.cpp @@ -54,8 +54,8 @@ ImageWidget::ImageWidget(TQWidget* parent_, const char* name_) : TQWidget(parent boxLayout->addStretch(1); KButtonBox* box = new KButtonBox(this,TQt::Vertical); - box->addButton(i18n("Select Image..."), TQT_TQOBJECT(this), TQT_SLOT(slotGetImage())); - box->addButton(i18n("Clear"), TQT_TQOBJECT(this), TQT_SLOT(slotClear())); + box->addButton(i18n("Select Image..."), this, TQT_SLOT(slotGetImage())); + box->addButton(i18n("Clear"), this, TQT_SLOT(slotClear())); box->layout(); boxLayout->addWidget(box); |