summaryrefslogtreecommitdiffstats
path: root/src/fetcherconfigdialog.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/fetcherconfigdialog.cpp
parent727a2e58bc79c09f53766110fb7c31d3f3af1e46 (diff)
downloadtellico-aa5bb443.tar.gz
tellico-aa5bb443.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/fetcherconfigdialog.cpp')
-rw-r--r--src/fetcherconfigdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fetcherconfigdialog.cpp b/src/fetcherconfigdialog.cpp
index 2d743a7..f307420 100644
--- a/src/fetcherconfigdialog.cpp
+++ b/src/fetcherconfigdialog.cpp
@@ -88,7 +88,7 @@ void FetcherConfigDialog::init(Fetch::Type type_) {
m_nameEdit->setFocus();
TQWhatsThis::add(m_nameEdit, w);
label->setBuddy(m_nameEdit);
- connect(m_nameEdit, TQT_SIGNAL(textChanged(const TQString&)), TQT_SLOT(slotNameChanged(const TQString&)));
+ connect(m_nameEdit, TQ_SIGNAL(textChanged(const TQString&)), TQ_SLOT(slotNameChanged(const TQString&)));
if(m_newSource) {
label = new TQLabel(i18n("Source &type: "), widget);
@@ -121,7 +121,7 @@ void FetcherConfigDialog::init(Fetch::Type type_) {
if(m_newSource) {
m_stack = new TQWidgetStack(widget);
vlay2->addWidget(m_stack);
- connect(m_typeCombo, TQT_SIGNAL(activated(int)), TQT_SLOT(slotNewSourceSelected(int)));
+ connect(m_typeCombo, TQ_SIGNAL(activated(int)), TQ_SLOT(slotNewSourceSelected(int)));
int z3950_idx = 0;
const Fetch::TypePairList typeList = Fetch::Manager::self()->typeList();
@@ -141,7 +141,7 @@ void FetcherConfigDialog::init(Fetch::Type type_) {
// just add config widget and reparent
m_configWidget->reparent(widget, TQPoint());
vlay2->addWidget(m_configWidget);
- connect(m_configWidget, TQT_SIGNAL(signalName(const TQString&)), TQT_SLOT(slotPossibleNewName(const TQString&)));
+ connect(m_configWidget, TQ_SIGNAL(signalName(const TQString&)), TQ_SLOT(slotPossibleNewName(const TQString&)));
}
setMainWidget(widget);
@@ -200,7 +200,7 @@ void FetcherConfigDialog::slotNewSourceSelected(int idx_) {
slotNewSourceSelected(0);
return;
}
- connect(cw, TQT_SIGNAL(signalName(const TQString&)), TQT_SLOT(slotPossibleNewName(const TQString&)));
+ connect(cw, TQ_SIGNAL(signalName(const TQString&)), TQ_SLOT(slotPossibleNewName(const TQString&)));
m_configWidgets.insert(idx_, cw);
m_stack->addWidget(cw);
m_stack->raiseWidget(cw);