diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:52:59 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-15 13:49:51 +0200 |
commit | 9540e3215ca6e6cbcccff74a311ef9b9652273c7 (patch) | |
tree | d01f3e4c96c1c7028e238cdf6daff12f26ef66b3 /kwin-styles/openlook | |
parent | 866262ca6ea176e5fa96d7553a72e936b6942b55 (diff) | |
download | tdeartwork-9540e3215ca6e6cbcccff74a311ef9b9652273c7.tar.gz tdeartwork-9540e3215ca6e6cbcccff74a311ef9b9652273c7.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 6b41ad2b1c1b934cf801bedd73f2358db1972378)
Diffstat (limited to 'kwin-styles/openlook')
-rw-r--r-- | kwin-styles/openlook/OpenLook.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kwin-styles/openlook/OpenLook.cpp b/kwin-styles/openlook/OpenLook.cpp index c3ac80b1..603b4857 100644 --- a/kwin-styles/openlook/OpenLook.cpp +++ b/kwin-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; } |