summaryrefslogtreecommitdiffstats
path: root/kbarcode/documentitem.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:26:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:26:00 +0900
commit417a964d442752688aa697ef4b880f4bd2ce85a3 (patch)
tree0e7661b9f88b9089900a82b549118e14056278db /kbarcode/documentitem.cpp
parent6f3f1d2a6769231049a653555ce5799f934e2a09 (diff)
downloadkbarcode-417a964d442752688aa697ef4b880f4bd2ce85a3.tar.gz
kbarcode-417a964d442752688aa697ef4b880f4bd2ce85a3.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbarcode/documentitem.cpp')
-rw-r--r--kbarcode/documentitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kbarcode/documentitem.cpp b/kbarcode/documentitem.cpp
index 03f83e8..d98400f 100644
--- a/kbarcode/documentitem.cpp
+++ b/kbarcode/documentitem.cpp
@@ -67,7 +67,7 @@ void DocumentItem::loadXML (TQDomElement* element)
m_rect.setHeight( element->attribute( "height_mm", "-1" ).toInt() );
m_pen.setColor( readXMLColor( element, "line-color", TQt::black ) );
- m_pen.setStyle( (Qt::PenStyle)element->attribute( "line-style", "0" ).toInt() );
+ m_pen.setStyle( (TQt::PenStyle)element->attribute( "line-style", "0" ).toInt() );
m_pen.setWidth( element->attribute( "line-width", "1" ).toInt() );
m_border = (bool)element->attribute( "line-visible", "1" ).toInt();
m_z = element->attribute( "z", "0" ).toInt();