summaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_painter.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:07:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 23:06:51 +0900
commit945085d2d242018111b8bb1e1082ebe2021b720b (patch)
tree9162dfce141628f7e5d7ffc311dc0df860a6b29b /src/modules/objects/class_painter.cpp
parent776d38202f9be592e1b6b99dbc81a64ee584c5c0 (diff)
downloadkvirc-945085d2d242018111b8bb1e1082ebe2021b720b.tar.gz
kvirc-945085d2d242018111b8bb1e1082ebe2021b720b.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9577f4de07539fb2464a1499d45b25993c5cea46)
Diffstat (limited to 'src/modules/objects/class_painter.cpp')
-rw-r--r--src/modules/objects/class_painter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/objects/class_painter.cpp b/src/modules/objects/class_painter.cpp
index b7f78d2..bf407f4 100644
--- a/src/modules/objects/class_painter.cpp
+++ b/src/modules/objects/class_painter.cpp
@@ -528,8 +528,8 @@ bool KviKvsObject_painter::functionsetBackGroundMode(KviKvsObjectFunctionCall *c
KVSO_PARAMETER("background mode",KVS_PT_STRING,0,szMode)
KVSO_PARAMETERS_END(c)
if(!m_pPainter)return true;
- if(KviTQString::equalCI(szMode,"Transparent")) m_pPainter->setBackgroundMode(Qt::TransparentMode);
- else if(KviTQString::equalCI(szMode,"Opaque")) m_pPainter->setBackgroundMode(Qt::OpaqueMode);
+ if(KviTQString::equalCI(szMode,"Transparent")) m_pPainter->setBackgroundMode(TQt::TransparentMode);
+ else if(KviTQString::equalCI(szMode,"Opaque")) m_pPainter->setBackgroundMode(TQt::OpaqueMode);
else c->warning( __tr2qs("Unknown orientation"));
return true;