From 2ca85d336093fd44a5effafbc44dde7edd4e30ec Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Dec 2011 01:31:56 -0600 Subject: Fix FTBFS --- qt/qextscintillabase.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'qt/qextscintillabase.cpp') 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 #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); } -- cgit v1.2.3