summaryrefslogtreecommitdiffstats
path: root/src/importdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:31:17 +0900
committerMichele Calgaro <[email protected]>2024-01-07 14:53:04 +0900
commitaa5bb4434eb6b60314787106284ad99294de4468 (patch)
tree3a766a6cc84578b8fa8f5a6db323de24c57959d8 /src/importdialog.cpp
parent727a2e58bc79c09f53766110fb7c31d3f3af1e46 (diff)
downloadtellico-aa5bb4434eb6b60314787106284ad99294de4468.tar.gz
tellico-aa5bb4434eb6b60314787106284ad99294de4468.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit c650254e1855d383dcafd15d18be20becc3b2253)
Diffstat (limited to 'src/importdialog.cpp')
-rw-r--r--src/importdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/importdialog.cpp b/src/importdialog.cpp
index d78ae43..964643d 100644
--- a/src/importdialog.cpp
+++ b/src/importdialog.cpp
@@ -86,7 +86,7 @@ ImportDialog::ImportDialog(Import::Format format_, const KURL::List& urls_, TQWi
topLayout->addWidget(w, 0);
}
- connect(bg, TQT_SIGNAL(clicked(int)), m_importer, TQT_SLOT(slotActionChanged(int)));
+ connect(bg, TQ_SIGNAL(clicked(int)), m_importer, TQ_SLOT(slotActionChanged(int)));
topLayout->addStretch();
setMainWidget(widget);
@@ -97,7 +97,7 @@ ImportDialog::ImportDialog(Import::Format format_, const KURL::List& urls_, TQWi
// want to grab default button action, too
// since the importer might do something with widgets, don't just call it, do it after layout is done
- TQTimer::singleShot(0, this, TQT_SLOT(slotUpdateAction()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotUpdateAction()));
}
ImportDialog::~ImportDialog() {