summaryrefslogtreecommitdiffstats
path: root/tqt/tqextscintillabase.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-18 15:37:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-19 19:35:49 +0900
commit0355ec980067dde281334a7e467bc3058ed4cfb3 (patch)
treec0875fb82ea2fca60e2268e26205ebe781dd8bff /tqt/tqextscintillabase.cpp
parent57048ef2d76edab4870498d2f69ff4f21c46ae8f (diff)
downloadtqscintilla-0355ec980067dde281334a7e467bc3058ed4cfb3.tar.gz
tqscintilla-0355ec980067dde281334a7e467bc3058ed4cfb3.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e867c97d483fa51344f1a3dda1d20cc499224428)
Diffstat (limited to 'tqt/tqextscintillabase.cpp')
-rw-r--r--tqt/tqextscintillabase.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tqt/tqextscintillabase.cpp b/tqt/tqextscintillabase.cpp
index d277dd6..2a9368a 100644
--- a/tqt/tqextscintillabase.cpp
+++ b/tqt/tqextscintillabase.cpp
@@ -84,11 +84,11 @@ TQextScintillaBase::TQextScintillaBase(TQWidget *parent,const char *name,WFlags
txtarea -> setFocusProxy(this);
layout -> addWidget(txtarea,0,0);
- vsb = new TQScrollBar(Qt::Vertical,this);
+ vsb = new TQScrollBar(TQt::Vertical,this);
layout -> addWidget(vsb,0,1);
connect(vsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleVSb(int)));
- hsb = new TQScrollBar(Qt::Horizontal,this);
+ hsb = new TQScrollBar(TQt::Horizontal,this);
layout -> addWidget(hsb,1,0);
connect(hsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleHSb(int)));
@@ -390,9 +390,9 @@ void TQextScintillaBase::mouseWheel(TQWheelEvent *we)
{
setFocus();
- if (we -> orientation() == Qt::Horizontal || we -> state() & ShiftButton)
+ if (we -> orientation() == TQt::Horizontal || we -> state() & ShiftButton)
TQApplication::sendEvent(hsb,we);
- else if (we -> orientation() == Qt::Vertical)
+ else if (we -> orientation() == TQt::Vertical)
TQApplication::sendEvent(vsb,we);
}