summaryrefslogtreecommitdiffstats
path: root/twin-styles/openlook/OpenLook.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'twin-styles/openlook/OpenLook.cpp')
-rw-r--r--twin-styles/openlook/OpenLook.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/twin-styles/openlook/OpenLook.cpp b/twin-styles/openlook/OpenLook.cpp
index af3e5291..53e2155c 100644
--- a/twin-styles/openlook/OpenLook.cpp
+++ b/twin-styles/openlook/OpenLook.cpp
@@ -226,7 +226,7 @@ TQSize OpenLook::minimumSize() const
OpenLook::resize(const TQSize& s)
{
widget()->resize(s);
- widget()->tqrepaint(); //there is some strange wrong tqrepaint of the frame without
+ widget()->repaint(); //there is some strange wrong repaint of the frame without
}
void
@@ -272,7 +272,7 @@ OpenLook::paintEvent(TQPaintEvent * pe)
void
OpenLook::showEvent(TQShowEvent *)
{
- widget()->tqrepaint();
+ widget()->repaint();
}
void
@@ -302,7 +302,7 @@ OpenLook::resizeEvent(TQResizeEvent* e)
void
OpenLook::activeChange()
{
- widget()->tqrepaint();
+ widget()->repaint();
}
KDecoration::Position
@@ -333,7 +333,7 @@ OpenLook::desktopChange()
void
OpenLook::maximizeChange()
{
- widget()->tqrepaint(false);
+ widget()->repaint(false);
}
void
@@ -377,7 +377,7 @@ OpenLook::animateMinimize(bool /*iconify*/)
if (!icongeom.isValid())
return false;
- TQRect wingeom(tqgeometry());
+ TQRect wingeom(geometry());
TQPainter p(workspaceWidget());
@@ -694,7 +694,7 @@ OpenLook::paintBorder(TQPainter & p) const
TQRect
OpenLook::titleRect() const
{
- return titleSpacer_->tqgeometry();
+ return titleSpacer_->geometry();
}
bool
@@ -704,7 +704,7 @@ OpenLook::isButtonPress(TQMouseEvent * e)
buttonDown_ = buttonRect().contains(mousePressPoint_);
- widget()->tqrepaint(buttonRect());
+ widget()->repaint(buttonRect());
return buttonDown_;
}
@@ -717,7 +717,7 @@ OpenLook::isButtonRelease(TQMouseEvent * e)
return true;
}
buttonDown_ = false;
- widget()->tqrepaint(buttonRect());
+ widget()->repaint(buttonRect());
return false;
}