From b9d509763e55ed56f4232733d33d515b44faf4af Mon Sep 17 00:00:00 2001 From: Branimir Karadzic Date: Thu, 2 Oct 2014 20:10:12 -0700 Subject: [PATCH] Fixed compile error. --- examples/common/entry/entry_x11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common/entry/entry_x11.cpp b/examples/common/entry/entry_x11.cpp index f8371cd0..a9126714 100644 --- a/examples/common/entry/entry_x11.cpp +++ b/examples/common/entry/entry_x11.cpp @@ -469,7 +469,7 @@ namespace entry void destroyWindow(WindowHandle _handle) { - if (isValid(handle) ) + if (isValid(_handle) ) { s_ctx.m_eventQueue.postWindowEvent(_handle, NULL); XUnmapWindow(s_ctx.m_display, s_ctx.m_window[_handle.idx]);