summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/actorwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/actorwidget.cpp')
-rw-r--r--umbrello/umbrello/actorwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/umbrello/umbrello/actorwidget.cpp b/umbrello/umbrello/actorwidget.cpp
index 38ddb4f5..ec997b4d 100644
--- a/umbrello/umbrello/actorwidget.cpp
+++ b/umbrello/umbrello/actorwidget.cpp
@@ -54,9 +54,9 @@ void ActorWidget::draw(TQPainter & p, int offsetX, int offsetY) {
p.drawLine(offsetX + middleX - a_width / 2, offsetY + thirdY + thirdY / 2,
offsetX + middleX + a_width / 2, offsetY + thirdY + thirdY / 2); //arms
//draw text
- p.setPen(TQPen(Qt::black));
+ p.setPen(TQPen(TQt::black));
p.drawText(offsetX + A_MARGIN, offsetY + h - fontHeight,
- w - A_MARGIN * 2, fontHeight, Qt::AlignCenter, getName());
+ w - A_MARGIN * 2, fontHeight, TQt::AlignCenter, getName());
if(m_bSelected)
drawSelected(&p, offsetX, offsetY);
}