summaryrefslogtreecommitdiffstats
path: root/src/cite/openoffice.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:31:17 +0900
committerMichele Calgaro <[email protected]>2024-01-04 10:31:17 +0900
commitc650254e1855d383dcafd15d18be20becc3b2253 (patch)
tree9c221c2e920b1f8e9098c6047d948833277659de /src/cite/openoffice.cpp
parent3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff)
downloadtellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz
tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/cite/openoffice.cpp')
-rw-r--r--src/cite/openoffice.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cite/openoffice.cpp b/src/cite/openoffice.cpp
index 7ae0712..67be849 100644
--- a/src/cite/openoffice.cpp
+++ b/src/cite/openoffice.cpp
@@ -200,17 +200,17 @@ bool OpenOffice::connectionDialog() {
KLineEdit* pipeEdit = new KLineEdit(w2);
pipeEdit->setText(d->pipe);
gl->addMultiCellWidget(pipeEdit, 0, 0, 1, 2);
- pipeEdit->connect(radioPipe, TQT_SIGNAL(toggled(bool)), TQT_SLOT(setEnabled(bool)));
+ pipeEdit->connect(radioPipe, TQ_SIGNAL(toggled(bool)), TQ_SLOT(setEnabled(bool)));
KLineEdit* hostEdit = new KLineEdit(w2);
hostEdit->setText(d->host);
gl->addWidget(hostEdit, 1, 1);
- hostEdit->connect(radioTCP, TQT_SIGNAL(toggled(bool)), TQT_SLOT(setEnabled(bool)));
+ hostEdit->connect(radioTCP, TQ_SIGNAL(toggled(bool)), TQ_SLOT(setEnabled(bool)));
KIntSpinBox* portSpin = new KIntSpinBox(w2);
portSpin->setMaxValue(99999);
portSpin->setValue(d->port);
gl->addWidget(portSpin, 1, 2);
- portSpin->connect(radioTCP, TQT_SIGNAL(toggled(bool)), TQT_SLOT(setEnabled(bool)));
+ portSpin->connect(radioTCP, TQ_SIGNAL(toggled(bool)), TQ_SLOT(setEnabled(bool)));
if(d->pipe.isEmpty()) {
radioTCP->setChecked(true);