diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:52:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-27 22:21:14 +0900 |
commit | 72bb5eb206ed184c4e3e4130e3cb54057a9ade92 (patch) | |
tree | c39295d9ee8e120591fedde14b54fa4242f18050 | |
parent | 905139f8029325bfb5ccd562ce6454dccd4776de (diff) | |
download | tde-style-lipstik-72bb5eb206ed184c4e3e4130e3cb54057a9ade92.tar.gz tde-style-lipstik-72bb5eb206ed184c4e3e4130e3cb54057a9ade92.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 83e7bca077ea8e53d515d38f387f860fb133a1f5)
-rw-r--r-- | style/lipstik.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/style/lipstik.cpp b/style/lipstik.cpp index d3516ba..0fe7abe 100644 --- a/style/lipstik.cpp +++ b/style/lipstik.cpp @@ -966,7 +966,7 @@ void LipstikStyle::renderPanel(TQPainter *p, if (kickerMode && p->device() && p->device()->devType() == TQInternal::Widget && - TQCString(TQT_TQWIDGET(static_cast<QWidget*>(p->device()))->className()) == "FittsLawFrame") { + TQCString(TQT_TQWIDGET(static_cast<TQWidget*>(p->device()))->className()) == "FittsLawFrame") { // Stolen wholesale from Keramik. I don't like it, but oh well. if (sunken) { const TQCOORD corners[] = { x2, y, x2, y2, x, y2, x, y }; |