summaryrefslogtreecommitdiff
path: root/src/gui/widgets/label.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-12 02:11:25 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-12 02:11:25 +0300
commit4ddde5f4fa3f4b77c2ddf1d4848d06628d396842 (patch)
tree8653a426a81a23fccfdeea45c042d59a13691bbf /src/gui/widgets/label.cpp
parent9ce9d5563195bf9d7d22356252f38bc95b247527 (diff)
downloadplus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.tar.gz
plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.tar.bz2
plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.tar.xz
plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.zip
fix random rare crashes in npc and possible other windows.
Diffstat (limited to 'src/gui/widgets/label.cpp')
-rw-r--r--src/gui/widgets/label.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/widgets/label.cpp b/src/gui/widgets/label.cpp
index 13eff1e7d..ad6daa81f 100644
--- a/src/gui/widgets/label.cpp
+++ b/src/gui/widgets/label.cpp
@@ -46,6 +46,9 @@ Label::Label(const Widget2 *const widget, const std::string &caption) :
Label::~Label()
{
+ if (gui)
+ gui->removeDragged(this);
+
mInstances --;
if (mInstances == 0 && Theme::instance())
Theme::instance()->unload(mSkin);