#3305 Fixed class name convention for Mac and Linux

This commit is contained in:
Jerry (Xinyu Hou) 2016-06-16 16:11:25 +00:00 committed by Andrew Nelless
parent cc10e319d1
commit f4bd2dab82
2 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ OSXKeyState::fakeCtrlAltDel()
}
bool
COSXKeyState::fakeMediaKey(KeyID id)
OSXKeyState::fakeMediaKey(KeyID id)
{
return fakeNativeMediaKey(id);;
}

View File

@ -1869,7 +1869,7 @@ XWindowsScreen::mapKeyFromX(XKeyEvent* event) const
LOG((CLOG_DEBUG2 "mapped code=%d to keysym=0x%04x", event->keycode, keysym));
// convert key
KeyID result = CXWindowsUtil::mapKeySymToKeyID(keysym);
KeyID result = XWindowsUtil::mapKeySymToKeyID(keysym);
LOG((CLOG_DEBUG2 "mapped keysym=0x%04x to keyID=%d", keysym, result));
return result;
}