summaryrefslogtreecommitdiffstats
path: root/src/knowitpref.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 14:50:49 +0900
commitaf5c111443c0462764799c889d500b814e2cb64b (patch)
treeb66cee032029d678e6ced6f3402cb7d310aa33c5 /src/knowitpref.cpp
parent2f7d0721945d00c7970409c6944a2f80ea1487a9 (diff)
downloadknowit-af5c1114.tar.gz
knowit-af5c1114.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 5ec91497d4e10770e3cf509373dc8cfb7116848f)
Diffstat (limited to 'src/knowitpref.cpp')
-rw-r--r--src/knowitpref.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/knowitpref.cpp b/src/knowitpref.cpp
index d844658..e698bb8 100644
--- a/src/knowitpref.cpp
+++ b/src/knowitpref.cpp
@@ -323,11 +323,11 @@ void KnowitPreferences::setOptions(const KnowitOptions& Options)
insertDateItalicButton->setOn(Options.insertDateItalic);
insertDateUnderlineButton->setOn(Options.insertDateUnderline);
slotUpdateDatePreview();
- connect(insertDateColorButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotUpdateDatePreview()));
- connect(insertDateFormatEdit, TQT_SIGNAL(textChanged (const TQString &)), this, TQT_SLOT(slotUpdateDatePreview()));
- connect(insertDateItalicButton, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotUpdateDatePreview()));
- connect(insertDateBoldButton, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotUpdateDatePreview()));
- connect(insertDateUnderlineButton, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotUpdateDatePreview()));
+ connect(insertDateColorButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotUpdateDatePreview()));
+ connect(insertDateFormatEdit, TQ_SIGNAL(textChanged (const TQString &)), this, TQ_SLOT(slotUpdateDatePreview()));
+ connect(insertDateItalicButton, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotUpdateDatePreview()));
+ connect(insertDateBoldButton, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotUpdateDatePreview()));
+ connect(insertDateUnderlineButton, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotUpdateDatePreview()));
/* non-GUI options */
firstLink = Options.firstLink;