summaryrefslogtreecommitdiffstats
path: root/konsole
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-11 05:14:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-11 05:14:35 +0000
commit2b11e515172c67290909f2496784e139f2492541 (patch)
tree6caaefccd37bb6fc744e48db87394eba9e727eac /konsole
parentd83a80f295597e6cd696cf5f308ff7d5545f8629 (diff)
downloadtdebase-2b11e515172c67290909f2496784e139f2492541.tar.gz
tdebase-2b11e515172c67290909f2496784e139f2492541.zip
Specify namespace when using WNoAutoErase
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1227631 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konsole')
-rw-r--r--konsole/konsole/TEWidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konsole/konsole/TEWidget.cpp b/konsole/konsole/TEWidget.cpp
index fb0a64376..6b350b261 100644
--- a/konsole/konsole/TEWidget.cpp
+++ b/konsole/konsole/TEWidget.cpp
@@ -331,7 +331,7 @@ void TEWidget::setFont(const TQFont &)
/* ------------------------------------------------------------------------- */
TEWidget::TEWidget(TQWidget *parent, const char *name)
-:TQFrame(parent,name,WNoAutoErase)
+:TQFrame(parent,name,TQt::WNoAutoErase)
,font_h(1)
,font_w(1)
,font_a(1)
@@ -1007,7 +1007,7 @@ void TEWidget::paintEvent( TQPaintEvent* pe )
drawFrame( &paint );
- // Since we're using WNoAutoErase, we have to make sure that
+ // Since we're using TQt::WNoAutoErase, we have to make sure that
// every single pixel is painted by the paint event.
// To do this, we must figure out which pixels are left in the
// area between the terminal image and the frame border.