Commit 1def1e2f authored by Nils Kuhnhenn's avatar Nils Kuhnhenn Committed by Alexandre Julliard

winex11.drv: Return default locale in LoadKeyboardLayout stub instead of 0.

parent b16ba454
......@@ -1947,9 +1947,8 @@ HKL CDECL X11DRV_GetKeyboardLayout(DWORD dwThreadid)
*/
HKL CDECL X11DRV_LoadKeyboardLayout(LPCWSTR name, UINT flags)
{
FIXME("%s, %04x: stub!\n", debugstr_w(name), flags);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
FIXME("%s, %04x: semi-stub! Returning default layout.\n", debugstr_w(name), flags);
return get_locale_kbd_layout();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment