summaryrefslogtreecommitdiffstats
path: root/conduits/sysinfoconduit/sysinfo-setup.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:06 +0900
commit7c95b68b3568737a10901c3e12d316e06dc4015f (patch)
treef9e52f0ee62e755155aedfe6fb4a99e590d9d055 /conduits/sysinfoconduit/sysinfo-setup.cpp
parentbdb5acdfbfe8973f2b45fe54193ad543064c1ac5 (diff)
downloadkpilot-7c95b68b3568737a10901c3e12d316e06dc4015f.tar.gz
kpilot-7c95b68b3568737a10901c3e12d316e06dc4015f.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'conduits/sysinfoconduit/sysinfo-setup.cpp')
-rw-r--r--conduits/sysinfoconduit/sysinfo-setup.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/conduits/sysinfoconduit/sysinfo-setup.cpp b/conduits/sysinfoconduit/sysinfo-setup.cpp
index 70676e4..534c834 100644
--- a/conduits/sysinfoconduit/sysinfo-setup.cpp
+++ b/conduits/sysinfoconduit/sysinfo-setup.cpp
@@ -103,12 +103,12 @@ SysInfoWidgetConfig::SysInfoWidgetConfig(TQWidget *w, const char *n) :
ConduitConfigBase::addAboutPage(fConfigWidget->tabWidget,fAbout);
fWidget=fConfigWidget;
- TQObject::connect(fConfigWidget->fOutputFile,TQT_SIGNAL(textChanged(const TQString&)),
- this,TQT_SLOT(modified()));
- TQObject::connect(fConfigWidget->fTemplateFile,TQT_SIGNAL(textChanged(const TQString&)),
- this,TQT_SLOT(modified()));
- TQObject::connect(fConfigWidget->fOutputType,TQT_SIGNAL(clicked(int)),
- this,TQT_SLOT(modified()));
+ TQObject::connect(fConfigWidget->fOutputFile,TQ_SIGNAL(textChanged(const TQString&)),
+ this,TQ_SLOT(modified()));
+ TQObject::connect(fConfigWidget->fTemplateFile,TQ_SIGNAL(textChanged(const TQString&)),
+ this,TQ_SLOT(modified()));
+ TQObject::connect(fConfigWidget->fOutputType,TQ_SIGNAL(clicked(int)),
+ this,TQ_SLOT(modified()));
fConduitName=i18n("System Information");
}