diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-01 01:31:56 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-01 01:31:56 -0600 |
commit | 2ca85d336093fd44a5effafbc44dde7edd4e30ec (patch) | |
tree | ca18ed733e273279bab574978806068e506c241a /qt/qextscintillabase.cpp | |
parent | 5b3b788b3748893e44b482b11bf83f045a6bc2c7 (diff) | |
download | tqscintilla-2ca85d336093fd44a5effafbc44dde7edd4e30ec.tar.gz tqscintilla-2ca85d336093fd44a5effafbc44dde7edd4e30ec.zip |
Fix FTBFS
Diffstat (limited to 'qt/qextscintillabase.cpp')
-rw-r--r-- | qt/qextscintillabase.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qt/qextscintillabase.cpp b/qt/qextscintillabase.cpp index 4f51877..aa58b9e 100644 --- a/qt/qextscintillabase.cpp +++ b/qt/qextscintillabase.cpp @@ -31,7 +31,7 @@ #include <tqptrlist.h> #include "qextscintillabase.h" -#include "ScintillaTQt.h" +#include "ScintillaQt.h" // The #defines in Scintilla.h and the enums in qextscintillabase.h conflict @@ -80,11 +80,11 @@ QextScintillaBase::QextScintillaBase(TQWidget *parent,const char *name,WFlags f) txtarea -> setFocusProxy(this); tqlayout -> addWidget(txtarea,0,0); - vsb = new TQScrollBarQt::Vertical,this); + vsb = new TQScrollBar(Qt::Vertical,this); tqlayout -> addWidget(vsb,0,1); connect(vsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleVSb(int))); - hsb = new TQScrollBarQt::Horizontal,this); + hsb = new TQScrollBar(Qt::Horizontal,this); tqlayout -> addWidget(hsb,1,0); connect(hsb,TQT_SIGNAL(valueChanged(int)),TQT_SLOT(handleHSb(int))); @@ -386,9 +386,9 @@ void QextScintillaBase::mouseWheel(TQWheelEvent *we) { setFocus(); - if (we -> orientation() ==Qt::Horizontal || we -> state() & ShiftButton) + if (we -> orientation() == Qt::Horizontal || we -> state() & ShiftButton) TQApplication::sendEvent(hsb,we); - else if (we -> orientation() ==Qt::Vertical) + else if (we -> orientation() == Qt::Vertical) TQApplication::sendEvent(vsb,we); } @@ -558,7 +558,7 @@ void QextScintillaBase::handleVSb(int val) // Handle the horizontal scrollbar. void QextScintillaBase::handleHSb(int val) { - sci ->Qt::HorizontalScrollTo(val); + sci ->HorizontalScrollTo(val); } |