diff options
author | Michele Calgaro <[email protected]> | 2023-12-14 21:19:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-15 11:49:48 +0900 |
commit | 727a2e58bc79c09f53766110fb7c31d3f3af1e46 (patch) | |
tree | b25d6d7150349065234e2b6cabe8d2c3cdd27aa4 /src/gui/stringmapdialog.cpp | |
parent | 8ed9929d5bce3d3af5684b487437e307e9f908a2 (diff) | |
download | tellico-727a2e58bc79c09f53766110fb7c31d3f3af1e46.tar.gz tellico-727a2e58bc79c09f53766110fb7c31d3f3af1e46.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51)
Diffstat (limited to 'src/gui/stringmapdialog.cpp')
-rw-r--r-- | src/gui/stringmapdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/stringmapdialog.cpp b/src/gui/stringmapdialog.cpp index e580a8d..28867a0 100644 --- a/src/gui/stringmapdialog.cpp +++ b/src/gui/stringmapdialog.cpp @@ -54,9 +54,9 @@ StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget m_edit2 = new KLineEdit(box); KButtonBox* bb = new KButtonBox(box); bb->addStretch(); - TQPushButton* btn = bb->addButton(i18n("&Set"), TQT_TQOBJECT(this), TQT_SLOT(slotAdd())); + TQPushButton* btn = bb->addButton(i18n("&Set"), this, TQT_SLOT(slotAdd())); btn->setIconSet(BarIcon(TQString::fromLatin1("document-new"), TDEIcon::SizeSmall)); - btn = bb->addButton(i18n("&Delete"), TQT_TQOBJECT(this), TQT_SLOT(slotDelete())); + btn = bb->addButton(i18n("&Delete"), this, TQT_SLOT(slotDelete())); btn->setIconSet(BarIcon(TQString::fromLatin1("edit-delete"), TDEIcon::SizeSmall)); l->addWidget(box); |