Change wrong OF prefix to OG.
This commit is contained in:
parent
14e5b61471
commit
c29f0c525c
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ void og_destroy(HWND widget, OGWidget *object)
|
|||
|
||||
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);
|
||||
|
||||
|
|
Reference in a new issue