diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-12 11:01:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-13 01:02:41 +0300 |
commit | 14a9a1da30ca772efd42a9ce6662a11b102818bc (patch) | |
tree | d19264fc77a677b0a25e989119dfbddb1ff14773 /src/gui/widgets/window.cpp | |
parent | f42921c0597101b5d6f10afa68d0ffc6f6d1a66f (diff) | |
download | plus-14a9a1da30ca772efd42a9ce6662a11b102818bc.tar.gz plus-14a9a1da30ca772efd42a9ce6662a11b102818bc.tar.bz2 plus-14a9a1da30ca772efd42a9ce6662a11b102818bc.tar.xz plus-14a9a1da30ca772efd42a9ce6662a11b102818bc.zip |
Fix leaks after last commit.
Diffstat (limited to 'src/gui/widgets/window.cpp')
-rw-r--r-- | src/gui/widgets/window.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index d956e9adf..d2ba03e07 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -339,6 +339,11 @@ void Window::setResizable(bool r) if (r) { + if (mGrip) + { + remove(mGrip); + delete mGrip; + } mGrip = new ResizeGrip; mGrip->setX(getWidth() - mGrip->getWidth() - getChildrenArea().x); mGrip->setY(getHeight() - mGrip->getHeight() - getChildrenArea().y); |