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/scrollarea.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/scrollarea.cpp')
-rw-r--r-- | src/gui/widgets/scrollarea.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gui/widgets/scrollarea.cpp b/src/gui/widgets/scrollarea.cpp index 4e15bc167..4cc4cad41 100644 --- a/src/gui/widgets/scrollarea.cpp +++ b/src/gui/widgets/scrollarea.cpp @@ -92,6 +92,21 @@ ScrollArea::~ScrollArea() delete getContent(); instances--; + if (instances == 0 && Theme::instance()) + { + Theme *theme = Theme::instance(); + theme->unloadRect(background); + theme->unloadRect(vMarker); + theme->unloadRect(vMarkerHi); + for (int i = 0; i < 2; i ++) + { + for (int f = UP; f < BUTTONS_DIR; f ++) + { + if (buttons[f][i]) + buttons[f][i]->decRef(); + } + } + } delete mVertexes; mVertexes = nullptr; |