summaryrefslogtreecommitdiffstats
path: root/conduits/abbrowserconduit/abbrowser-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-07 14:52:43 +0900
commitf9289944a1f0a34b3df76770f27461e6b3752b46 (patch)
tree131dc32a84bc1385c2823c210c0974bbc0d0ff6c /conduits/abbrowserconduit/abbrowser-setup.cpp
parent3b5ccc656fde07ed416181abf061b4fcd90e2830 (diff)
downloadkpilot-f9289944.tar.gz
kpilot-f9289944.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7c95b68b3568737a10901c3e12d316e06dc4015f)
Diffstat (limited to 'conduits/abbrowserconduit/abbrowser-setup.cpp')
-rw-r--r--conduits/abbrowserconduit/abbrowser-setup.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/conduits/abbrowserconduit/abbrowser-setup.cpp b/conduits/abbrowserconduit/abbrowser-setup.cpp
index a33632e..92f4a8c 100644
--- a/conduits/abbrowserconduit/abbrowser-setup.cpp
+++ b/conduits/abbrowserconduit/abbrowser-setup.cpp
@@ -73,20 +73,20 @@ AbbrowserWidgetSetup::AbbrowserWidgetSetup(TQWidget *w, const char *n) :
ConduitConfigBase::addAboutPage(fConfigWidget->tabWidget,fAbout);
fWidget=fConfigWidget;
fConfigWidget->fAbookFile->setMode(KFile::File);
-#define CM(a,b) connect(fConfigWidget->a,b,this,TQT_SLOT(modified()));
- CM(fSyncDestination,TQT_SIGNAL(clicked(int)));
- CM(fAbookFile,TQT_SIGNAL(textChanged(const TQString &)));
- CM(fArchive,TQT_SIGNAL(toggled(bool)));
- CM(fConflictResolution,TQT_SIGNAL(activated(int)));
- CM(fOtherPhone,TQT_SIGNAL(activated(int)));
- CM(fAddress,TQT_SIGNAL(activated(int)));
- CM(fFax,TQT_SIGNAL(activated(int)));
- CM(fCustom0,TQT_SIGNAL(activated(int)));
- CM(fCustom1,TQT_SIGNAL(activated(int)));
- CM(fCustom2,TQT_SIGNAL(activated(int)));
- CM(fCustom3,TQT_SIGNAL(activated(int)));
- CM(fCustomDate, TQT_SIGNAL(activated(int)));
- CM(fCustomDate, TQT_SIGNAL(textChanged(const TQString&)));
+#define CM(a,b) connect(fConfigWidget->a,b,this,TQ_SLOT(modified()));
+ CM(fSyncDestination,TQ_SIGNAL(clicked(int)));
+ CM(fAbookFile,TQ_SIGNAL(textChanged(const TQString &)));
+ CM(fArchive,TQ_SIGNAL(toggled(bool)));
+ CM(fConflictResolution,TQ_SIGNAL(activated(int)));
+ CM(fOtherPhone,TQ_SIGNAL(activated(int)));
+ CM(fAddress,TQ_SIGNAL(activated(int)));
+ CM(fFax,TQ_SIGNAL(activated(int)));
+ CM(fCustom0,TQ_SIGNAL(activated(int)));
+ CM(fCustom1,TQ_SIGNAL(activated(int)));
+ CM(fCustom2,TQ_SIGNAL(activated(int)));
+ CM(fCustom3,TQ_SIGNAL(activated(int)));
+ CM(fCustomDate, TQ_SIGNAL(activated(int)));
+ CM(fCustomDate, TQ_SIGNAL(textChanged(const TQString&)));
#undef CM
}