Index: win32/OGApplication.m ================================================================== --- win32/OGApplication.m +++ win32/OGApplication.m @@ -72,11 +72,11 @@ @end //================================================================================================================================== void win32_init(int *argc, char ***argv) { //register a single window class; we'll customize later, as needed - char *clsName = "OFWidgetClass"; + char *clsName = "OGWidgetClass"; HINSTANCE hInst = (HINSTANCE)GetModuleHandle(NULL); WNDCLASSEX wcx; wcx.cbSize = sizeof(wcx); wcx.style = CS_VREDRAW | CS_HREDRAW; wcx.lpfnWndProc = (WNDPROC)win32_OGWndProc; Index: win32/OGWidget.m ================================================================== --- win32/OGWidget.m +++ win32/OGWidget.m @@ -39,11 +39,11 @@ { self = [super init]; widget = NULL; HINSTANCE hInst = (HINSTANCE)GetModuleHandle(NULL); - widget = CreateWindowEx(WS_EX_LEFT, "OFWidgetClass", "OFWidget", WS_OVERLAPPEDWINDOW, + widget = CreateWindowEx(WS_EX_LEFT, "OGWidgetClass", "OGWidget", WS_OVERLAPPEDWINDOW, 0, 0, 1, 1, NULL, NULL, hInst, NULL); SetWindowLong(widget, GWL_USERDATA, (int)self); @try { if (isa == [OGWidget class])