diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-14 21:19:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-15 00:30:59 +0900 |
commit | 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (patch) | |
tree | d7ec6ca39a46ae475336025d1c11e27fe23a47e8 /src/gui/imagewidget.cpp | |
parent | 10996a19ed32a39c2177936026b798cae63e01bd (diff) | |
download | tellico-3d581777cdf9c0ff8dc7e757a2cd576f69e96b51.tar.gz tellico-3d581777cdf9c0ff8dc7e757a2cd576f69e96b51.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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); |