From f45dc867263a799c1af3bf8e64063bf795681c26 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 23 May 2015 19:01:31 +0300 Subject: Set mWindow pointer to self in postInit base methods for window and popup. --- src/gui/widgets/popup.h | 2 +- src/gui/widgets/window.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/widgets/popup.h b/src/gui/widgets/popup.h index f39a92ec0..1d5bf0492 100644 --- a/src/gui/widgets/popup.h +++ b/src/gui/widgets/popup.h @@ -172,7 +172,7 @@ class Popup notfinal : public Container, { return mVisible; } virtual void postInit() - { mInit = true; } + { mInit = true; mWindow = this; } protected: int mPadding; /**< Holds the padding of the popup. */ diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h index 83f88f726..90d0ade38 100644 --- a/src/gui/widgets/window.h +++ b/src/gui/widgets/window.h @@ -286,7 +286,7 @@ class Window notfinal : public BasicContainer2, { mSaveVisible = save; } virtual void postInit() - { mInit = true; } + { mInit = true; mWindow = this; } /** * Returns the parent window. -- cgit v1.2.3-60-g2f50