diff options
Diffstat (limited to 'kmix/verticaltext.cpp')
-rw-r--r-- | kmix/verticaltext.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kmix/verticaltext.cpp b/kmix/verticaltext.cpp index e6c0e42d..77bda1af 100644 --- a/kmix/verticaltext.cpp +++ b/kmix/verticaltext.cpp @@ -20,11 +20,11 @@ */ #include "verticaltext.h" -#include <qpainter.h> +#include <tqpainter.h> #include <kdebug.h> -VerticalText::VerticalText(QWidget * parent, const char * name, WFlags f) : QWidget(parent,name,f) +VerticalText::VerticalText(TQWidget * parent, const char * name, WFlags f) : TQWidget(parent,name,f) { resize(20,100 /*parent->height() */ ); setMinimumSize(20,10); // neccesary for smooth integration into layouts (we only care for the widths). @@ -34,24 +34,24 @@ VerticalText::~VerticalText() { } -void VerticalText::paintEvent ( QPaintEvent * /*event*/ ) { +void VerticalText::paintEvent ( TQPaintEvent * /*event*/ ) { //kdDebug(67100) << "paintEvent(). height()=" << height() << "\n"; - QPainter paint(this); + TQPainter paint(this); paint.rotate(270); paint.translate(0,-4); // Silly "solution" to make underlengths work // Fix for bug 72520 //- paint.drawText(-height()+2,width(),name()); - //+ paint.drawText( -height()+2, width(), QString::fromUtf8(name()) ); - paint.drawText( -height()+2, width(), QString::fromUtf8(name()) ); + //+ paint.drawText( -height()+2, width(), TQString::fromUtf8(name()) ); + paint.drawText( -height()+2, width(), TQString::fromUtf8(name()) ); } -QSize VerticalText::sizeHint() const { - return QSize(20,100); // !! UGLY. Should be reworked +TQSize VerticalText::sizeHint() const { + return TQSize(20,100); // !! UGLY. Should be reworked } -QSizePolicy VerticalText::sizePolicy () const +TQSizePolicy VerticalText::sizePolicy () const { - return QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred); + return TQSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Preferred); } |