summaryrefslogtreecommitdiffstats
path: root/kpf/src/PropertiesDialogPlugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpf/src/PropertiesDialogPlugin.cpp')
-rw-r--r--kpf/src/PropertiesDialogPlugin.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/kpf/src/PropertiesDialogPlugin.cpp b/kpf/src/PropertiesDialogPlugin.cpp
index 43b9ccea..f6d95da5 100644
--- a/kpf/src/PropertiesDialogPlugin.cpp
+++ b/kpf/src/PropertiesDialogPlugin.cpp
@@ -201,15 +201,15 @@ namespace KPF
connect
(
kapp->dcopClient(),
- TQT_SIGNAL(applicationRegistered(const TQCString &)),
- TQT_SLOT(slotApplicationRegistered(const TQCString &))
+ TQ_SIGNAL(applicationRegistered(const TQCString &)),
+ TQ_SLOT(slotApplicationRegistered(const TQCString &))
);
connect
(
kapp->dcopClient(),
- TQT_SIGNAL(applicationRemoved(const TQCString &)),
- TQT_SLOT(slotApplicationUnregistered(const TQCString &))
+ TQ_SIGNAL(applicationRemoved(const TQCString &)),
+ TQ_SLOT(slotApplicationUnregistered(const TQCString &))
);
d->kpfRunning = kapp->dcopClient()->isApplicationRegistered("kpf");
@@ -309,7 +309,7 @@ namespace KPF
l->addStretch(1);
- connect(d->pb_startKPF, TQT_SIGNAL(clicked()), TQT_SLOT(slotStartKPF()));
+ connect(d->pb_startKPF, TQ_SIGNAL(clicked()), TQ_SLOT(slotStartKPF()));
return w;
}
@@ -453,51 +453,51 @@ namespace KPF
TQWhatsThis::add(d->le_serverName, serverNameHelp);
TQWhatsThis::add(d->cb_followSymlinks, followSymlinksHelp);
- connect(d->cb_share, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotSharingToggled(bool)));
+ connect(d->cb_share, TQ_SIGNAL(toggled(bool)), TQ_SLOT(slotSharingToggled(bool)));
slotSharingToggled(false);
connect
(
d->cb_share,
- TQT_SIGNAL(toggled(bool)),
- TQT_SLOT(slotChanged())
+ TQ_SIGNAL(toggled(bool)),
+ TQ_SLOT(slotChanged())
);
connect
(
d->sb_listenPort,
- TQT_SIGNAL(valueChanged(int)),
- TQT_SLOT(slotChanged())
+ TQ_SIGNAL(valueChanged(int)),
+ TQ_SLOT(slotChanged())
);
connect
(
d->sb_bandwidthLimit,
- TQT_SIGNAL(valueChanged(int)),
- TQT_SLOT(slotChanged())
+ TQ_SIGNAL(valueChanged(int)),
+ TQ_SLOT(slotChanged())
);
#if 0
connect
(
d->sb_connectionLimit,
- TQT_SIGNAL(valueChanged(int)),
- TQT_SLOT(slotChanged())
+ TQ_SIGNAL(valueChanged(int)),
+ TQ_SLOT(slotChanged())
);
#endif
connect
(
d->le_serverName,
- TQT_SIGNAL(textChanged(const TQString&)),
- TQT_SLOT(slotChanged())
+ TQ_SIGNAL(textChanged(const TQString&)),
+ TQ_SLOT(slotChanged())
);
connect
(
d->cb_followSymlinks,
- TQT_SIGNAL(toggled(bool)),
- TQT_SLOT(slotChanged())
+ TQ_SIGNAL(toggled(bool)),
+ TQ_SLOT(slotChanged())
);
return w;
@@ -512,7 +512,7 @@ namespace KPF
kapp->dcopClient()
->send("kicker", "default", "addApplet(TQString)", TQString("kpfapplet.desktop"));
- TQTimer::singleShot(4 * 1000, this, TQT_SLOT(slotStartKPFFailed()));
+ TQTimer::singleShot(4 * 1000, this, TQ_SLOT(slotStartKPFFailed()));
}
void