summaryrefslogtreecommitdiffstats
path: root/konversation/src/images.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/images.cpp')
-rw-r--r--konversation/src/images.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konversation/src/images.cpp b/konversation/src/images.cpp
index dcf7cc0..74f7557 100644
--- a/konversation/src/images.cpp
+++ b/konversation/src/images.cpp
@@ -165,7 +165,7 @@ TQIconSet Images::getLed(TQColor col,bool state)
// Set the brush to SolidPattern, this fills the entire area
// of the ellipse which is drawn first
- brush.setStyle( Qt::SolidPattern );
+ brush.setStyle( TQt::SolidPattern );
brush.setColor( color );
paint.setBrush( brush );
@@ -208,7 +208,7 @@ TQIconSet Images::getLed(TQColor col,bool state)
color = TQColor("#7D7D7D");
pen.setColor( color ); // Set the pen accordingly
paint.setPen( pen ); // Select pen for drawing
- brush.setStyle( Qt::NoBrush ); // Switch off the brush
+ brush.setStyle( TQt::NoBrush ); // Switch off the brush
paint.setBrush( brush ); // This avoids filling of the ellipse
paint.drawEllipse( 2, 2, width, width );
paint.end();