]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
fixed dll import specification of wxGetHInstance()
[wxWidgets.git] / src / msw / window.cpp
index d90ee63d4d3857dbe21f47135eb03f15d608cc87..1daf19b5e9355e4a3a1bcaaed6a57da938daaeee 100644 (file)
@@ -581,7 +581,7 @@ void wxWindowMSW::SetFocusFromKbd()
 }
 
 // Get the window with the focus
-wxWindow *wxWindowBase::FindFocus()
+wxWindow *wxWindowBase::DoFindFocus()
 {
     HWND hWnd = ::GetFocus();
     if ( hWnd )
@@ -5123,7 +5123,7 @@ int wxCharCodeWXToMSW(int id, bool *isVirtual)
     return keySym;
 }
 
-bool wxGetKeyState(const wxKeyCode& key)
+bool wxGetKeyState(wxKeyCode key)
 {
     bool bVirtual;
     int vkey = wxCharCodeWXToMSW(key, &bVirtual);