summaryrefslogtreecommitdiffstats
path: root/tqt/tqextscintillabase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqt/tqextscintillabase.cpp')
-rw-r--r--tqt/tqextscintillabase.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tqt/tqextscintillabase.cpp b/tqt/tqextscintillabase.cpp
index 2a9368a..8d02345 100644
--- a/tqt/tqextscintillabase.cpp
+++ b/tqt/tqextscintillabase.cpp
@@ -86,11 +86,11 @@ TQextScintillaBase::TQextScintillaBase(TQWidget *parent,const char *name,WFlags
vsb = new TQScrollBar(TQt::Vertical,this);
layout -> addWidget(vsb,0,1);
- connect(vsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleVSb(int)));
+ connect(vsb,TQ_SIGNAL(valueChanged(int)),TQ_SLOT(handleVSb(int)));
hsb = new TQScrollBar(TQt::Horizontal,this);
layout -> addWidget(hsb,1,0);
- connect(hsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleHSb(int)));
+ connect(hsb,TQ_SIGNAL(valueChanged(int)),TQ_SLOT(handleHSb(int)));
txtarea -> installEventFilter(this);
@@ -111,7 +111,7 @@ TQextScintillaBase::TQextScintillaBase(TQWidget *parent,const char *name,WFlags
TQClipboard *cb = TQApplication::clipboard();
if (cb -> supportsSelection())
- connect(cb,TQT_SIGNAL(selectionChanged()),TQT_SLOT(handleSelection()));
+ connect(cb,TQ_SIGNAL(selectionChanged()),TQ_SLOT(handleSelection()));
// Add it to the pool.
poolList.append(this);