summaryrefslogtreecommitdiffstats
path: root/tqt/ScintillaTQt.cpp
diff options
context:
space:
mode:
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