diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/popup.h | 2 | ||||
-rw-r--r-- | 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. |