diff options
author | David Athay <ko2fan@gmail.com> | 2008-07-03 16:13:57 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-07-03 16:13:57 +0000 |
commit | d22c6843a9b9f06a0f9e05bed268bfab90b75031 (patch) | |
tree | 8a8c8068977f733ded36b9f12f274395401cfcc2 /src/gui/window.cpp | |
parent | 68b7cdb813c937373a840a55844d42626be4763b (diff) | |
download | mana-d22c6843a9b9f06a0f9e05bed268bfab90b75031.tar.gz mana-d22c6843a9b9f06a0f9e05bed268bfab90b75031.tar.bz2 mana-d22c6843a9b9f06a0f9e05bed268bfab90b75031.tar.xz mana-d22c6843a9b9f06a0f9e05bed268bfab90b75031.zip |
Fix guild window focus and crash bug
Diffstat (limited to 'src/gui/window.cpp')
-rw-r--r-- | src/gui/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 1e5dff50..24c9f850 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -169,9 +169,9 @@ Window::~Window() // Clean up Border images. for( int i = 0; i < 9; i++ ) { + delete border[i]; border[i] = NULL; } - delete border; } void Window::setWindowContainer(WindowContainer *wc) |