summaryrefslogtreecommitdiffstats
path: root/tqt/ScintillaTQt.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:56 +0900
commitad963f6e626458b1f1da4e3ec6204643d2d6909b (patch)
treed3eefdba670c68a7c23e9d2bb2b14b0b1f5e2093 /tqt/ScintillaTQt.cpp
parente867c97d483fa51344f1a3dda1d20cc499224428 (diff)
downloadtqscintilla-ad963f6e626458b1f1da4e3ec6204643d2d6909b.tar.gz
tqscintilla-ad963f6e626458b1f1da4e3ec6204643d2d6909b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tqt/ScintillaTQt.cpp')
-rw-r--r--tqt/ScintillaTQt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tqt/ScintillaTQt.cpp b/tqt/ScintillaTQt.cpp
index 249ca5f..15bbc20 100644
--- a/tqt/ScintillaTQt.cpp
+++ b/tqt/ScintillaTQt.cpp
@@ -93,7 +93,7 @@ ScintillaTQt::ScintillaTQt(TQextScintillaBase *tqsb_) :
// We aren't a TQObject so we use the API class to do TQObject related
// things for us.
- tqsb -> connect(&qtimer,TQT_SIGNAL(timeout()),TQT_SLOT(handleTimer()));
+ tqsb -> connect(&qtimer,TQ_SIGNAL(timeout()),TQ_SLOT(handleTimer()));
Initialise();
}
@@ -595,7 +595,7 @@ void ScintillaTQt::AddToPopUp(const char *label,int cmd,bool enabled)
{
TQString tr_label = tqApp -> translate("ContextMenu",label);
- pm -> insertItem(tr_label,tqsb,TQT_SLOT(handlePopUp(int)),0,cmd);
+ pm -> insertItem(tr_label,tqsb,TQ_SLOT(handlePopUp(int)),0,cmd);
pm -> setItemEnabled(cmd,enabled);
}
else