From 85a17748bd94cdd5cd4ebf4d44acf1c70666eba4 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 13 Feb 2012 15:23:33 +0000 Subject: [PATCH] adding missing initializer to raw_control, fixes #13963 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/kbdstate.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/kbdstate.h b/include/wx/kbdstate.h index b50c2a4fce..25b660c0df 100644 --- a/include/wx/kbdstate.h +++ b/include/wx/kbdstate.h @@ -28,6 +28,9 @@ public: m_shiftDown(shiftDown), m_altDown(altDown), m_metaDown(metaDown) +#ifdef __WXOSX__ + ,m_rawControlDown(false) +#endif { } -- 2.45.2