diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 15:24:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 22:37:12 +0900 |
commit | f30bd9310679744c2f6dd063f3b6af9ba47d728f (patch) | |
tree | 6f8caf1ba415b942248571203395ac5afefd882d | |
parent | 72bb5eb206ed184c4e3e4130e3cb54057a9ade92 (diff) | |
download | tde-style-lipstik-f30bd9310679744c2f6dd063f3b6af9ba47d728f.tar.gz tde-style-lipstik-f30bd9310679744c2f6dd063f3b6af9ba47d728f.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2e60f361db9c1545f10f22e342252570edb75b41)
-rw-r--r-- | style/lipstik.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/style/lipstik.cpp b/style/lipstik.cpp index 0fe7abe..4dd4940 100644 --- a/style/lipstik.cpp +++ b/style/lipstik.cpp @@ -3100,14 +3100,14 @@ void LipstikStyle::drawControl(ControlElement element, // Draw the pixmap if ( pixmap->depth() == 1 ) - p->setBackgroundMode( Qt::OpaqueMode ); + p->setBackgroundMode( TQt::OpaqueMode ); int diffw = ( ( r.width() - pixmap->width() ) / 2 ) + ( ( r.width() - pixmap->width() ) % 2 ); p->drawPixmap( r.x()+diffw, r.y()+1, *pixmap ); if ( pixmap->depth() == 1 ) - p->setBackgroundMode( Qt::TransparentMode ); + p->setBackgroundMode( TQt::TransparentMode ); } } @@ -3143,7 +3143,7 @@ void LipstikStyle::drawControl(ControlElement element, if (_drawToolBarGradient) { TQDockWindow *wind = (TQDockWindow*)widget; bool horizontal=false; - if ( Qt::Horizontal==wind->orientation() ) { + if ( TQt::Horizontal==wind->orientation() ) { horizontal=true; } if (_invertBarGrad) { |