diff options
Diffstat (limited to 'kpresenter/KPrObject.cpp')
-rw-r--r-- | kpresenter/KPrObject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpresenter/KPrObject.cpp b/kpresenter/KPrObject.cpp index f310552d..210506e7 100644 --- a/kpresenter/KPrObject.cpp +++ b/kpresenter/KPrObject.cpp @@ -1408,7 +1408,7 @@ void KPrObject::paintSelection( TQPainter *_painter, KoTextZoomHandler *_zoomHan _painter->save(); _painter->translate( _zoomHandler->zoomItX(orig.x()), _zoomHandler->zoomItY(orig.y()) ); _painter->setPen( TQPen( TQt::black, 1, TQPen::SolidLine ) ); - _painter->setBrush( kapp->palette().color( TQPalette::Active, TQColorGroup::Highlight ) ); + _painter->setBrush( tdeApp->palette().color( TQPalette::Active, TQColorGroup::Highlight ) ); KoRect r = getRealRect(); @@ -1444,7 +1444,7 @@ void KPrObject::paintSelection( TQPainter *_painter, KoTextZoomHandler *_zoomHan zX6=zX6-2; zY6=zY6-2; - TQBrush brush=kapp->palette().color( TQPalette::Active,TQColorGroup::Base ); + TQBrush brush=tdeApp->palette().color( TQPalette::Active,TQColorGroup::Base ); _painter->fillRect( x, y, zX6, zY6, brush ); _painter->fillRect( x, y + h / 2, zX6, zY6, brush); _painter->fillRect( x, y + h, zX6, zY6, brush ); |