summaryrefslogtreecommitdiffstats
path: root/src/gui/imagewidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 14:53:04 +0900
commitaa5bb4434eb6b60314787106284ad99294de4468 (patch)
tree3a766a6cc84578b8fa8f5a6db323de24c57959d8 /src/gui/imagewidget.cpp
parent727a2e58bc79c09f53766110fb7c31d3f3af1e46 (diff)
downloadtellico-aa5bb4434eb6b60314787106284ad99294de4468.tar.gz
tellico-aa5bb4434eb6b60314787106284ad99294de4468.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c650254e1855d383dcafd15d18be20becc3b2253)
Diffstat (limited to 'src/gui/imagewidget.cpp')
-rw-r--r--src/gui/imagewidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/imagewidget.cpp b/src/gui/imagewidget.cpp
index 75fe95f..73997ee 100644
--- a/src/gui/imagewidget.cpp
+++ b/src/gui/imagewidget.cpp
@@ -54,14 +54,14 @@ ImageWidget::ImageWidget(TQWidget* parent_, const char* name_) : TQWidget(parent
boxLayout->addStretch(1);
KButtonBox* box = new KButtonBox(this,TQt::Vertical);
- box->addButton(i18n("Select Image..."), this, TQT_SLOT(slotGetImage()));
- box->addButton(i18n("Clear"), this, TQT_SLOT(slotClear()));
+ box->addButton(i18n("Select Image..."), this, TQ_SLOT(slotGetImage()));
+ box->addButton(i18n("Clear"), this, TQ_SLOT(slotClear()));
box->layout();
boxLayout->addWidget(box);
boxLayout->addSpacing(8);
m_cbLinkOnly = new TQCheckBox(i18n("Save link only"), this);
- connect(m_cbLinkOnly, TQT_SIGNAL(clicked()), TQT_SLOT(slotLinkOnlyClicked()));
+ connect(m_cbLinkOnly, TQ_SIGNAL(clicked()), TQ_SLOT(slotLinkOnlyClicked()));
boxLayout->addWidget(m_cbLinkOnly);
boxLayout->addStretch(1);