Skip to content

Commit

Permalink
Clean up parent window when destroying a window
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jun 16, 2017
1 parent 0a75192 commit 1b5614b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/video/windows/SDL_windowswindow.c
Expand Up @@ -114,7 +114,7 @@ WIN_SetWindowPositionInternal(_THIS, SDL_Window * window, UINT flags)
}

static int
SetupWindowData(_THIS, SDL_Window * window, HWND hwnd, SDL_bool created)
SetupWindowData(_THIS, SDL_Window * window, HWND hwnd, HWND parent, SDL_bool created)
{
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
SDL_WindowData *data;
Expand All @@ -126,6 +126,7 @@ SetupWindowData(_THIS, SDL_Window * window, HWND hwnd, SDL_bool created)
}
data->window = window;
data->hwnd = hwnd;
data->parent = parent;
data->hdc = GetDC(hwnd);
data->hinstance = (HINSTANCE) GetWindowLongPtr(hwnd, GWLP_HINSTANCE);
data->created = created;
Expand Down Expand Up @@ -300,8 +301,11 @@ WIN_CreateWindow(_THIS, SDL_Window * window)

WIN_PumpEvents(_this);

if (SetupWindowData(_this, window, hwnd, SDL_TRUE) < 0) {
if (SetupWindowData(_this, window, hwnd, parent, SDL_TRUE) < 0) {
DestroyWindow(hwnd);
if (parent) {
DestroyWindow(parent);
}
return -1;
}

Expand Down Expand Up @@ -362,7 +366,7 @@ WIN_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
SDL_stack_free(title);
}

if (SetupWindowData(_this, window, hwnd, SDL_FALSE) < 0) {
if (SetupWindowData(_this, window, hwnd, NULL, SDL_FALSE) < 0) {
return -1;
}

Expand Down Expand Up @@ -680,6 +684,9 @@ WIN_DestroyWindow(_THIS, SDL_Window * window)
RemoveProp(data->hwnd, TEXT("SDL_WindowData"));
if (data->created) {
DestroyWindow(data->hwnd);
if (data->parent) {
DestroyWindow(data->parent);
}
} else {
/* Restore any original event handler... */
if (data->wndproc != NULL) {
Expand Down
1 change: 1 addition & 0 deletions src/video/windows/SDL_windowswindow.h
Expand Up @@ -31,6 +31,7 @@ typedef struct
{
SDL_Window *window;
HWND hwnd;
HWND parent;
HDC hdc;
HDC mdc;
HINSTANCE hinstance;
Expand Down

0 comments on commit 1b5614b

Please sign in to comment.