Fix wxFrame::AttachMenuBar() compilation under Windows CE.

There was a typo in GetHwnd() call.

Closes #13848.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70313 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2012-01-10 17:01:20 +00:00
parent d58c7af849
commit 102db80fb5

View File

@ -385,7 +385,7 @@ void wxFrame::AttachMenuBar(wxMenuBar *menubar)
// adjust for menu / titlebar height
rc.bottom -= (2*menuHeight-1);
::MoveWindow(Gethwnd(), rc.left, rc.top, rc.right, rc.bottom, FALSE);
::MoveWindow(GetHwnd(), rc.left, rc.top, rc.right, rc.bottom, FALSE);
}
#endif