Fix k typo

This commit is contained in:
Samuel Attard 2016-09-20 02:42:41 +10:00
parent ba98109d33
commit 456f102cdc
No known key found for this signature in database
GPG key ID: 273DC1869D8F13EF

View file

@ -12,7 +12,7 @@ namespace atom {
namespace { namespace {
const wchar_t kSystemPreferencestWindowClass[] = const wchar_t kSystemPreferencesWindowClass[] =
L"Electron_SystemPreferencesHostWindow"; L"Electron_SystemPreferencesHostWindow";
} // namespace } // namespace
@ -44,7 +44,7 @@ std::string SystemPreferences::GetAccentColor() {
void SystemPreferences::InitializeWindow() { void SystemPreferences::InitializeWindow() {
WNDCLASSEX window_class; WNDCLASSEX window_class;
base::win::InitializeWindowClass( base::win::InitializeWindowClass(
kSystemPreferencestWindowClass, kSystemPreferencesWindowClass,
&base::win::WrappedWindowProc<SystemPreferences::WndProcStatic>, &base::win::WrappedWindowProc<SystemPreferences::WndProcStatic>,
0, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, NULL,
&window_class); &window_class);