diff options
Diffstat (limited to 'source/UI/Window.cpp')
-rw-r--r-- | source/UI/Window.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/UI/Window.cpp b/source/UI/Window.cpp index 2f9dcb7a9..0c955ba57 100644 --- a/source/UI/Window.cpp +++ b/source/UI/Window.cpp @@ -41,6 +41,11 @@ cWindow::cWindow(cWindow::WindowType a_WindowType, const AString & a_WindowTitle cWindow::~cWindow() { + for (cSlotAreas::iterator itr = m_SlotAreas.begin(), end = m_SlotAreas.end(); itr != end; ++itr) + { + delete *itr; + } + m_SlotAreas.clear(); } |