mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
Set default window cursor.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@18267 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0ec87c9c05
commit
61ece14662
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-12-25 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/win32/WIN32Server.m (-_initWin32Context) set a default
|
||||
cursor, which is used each time the window is entered.
|
||||
|
||||
2003-12-23 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/winlib/WIN32GState.m (-copyBits:fromRect:toPoint:): Made
|
||||
|
|
|
@ -72,7 +72,7 @@ LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg,
|
|||
wc.cbWndExtra = sizeof(WIN_INTERN);
|
||||
wc.hInstance = hinstance;
|
||||
wc.hIcon = NULL;
|
||||
wc.hCursor = NULL;
|
||||
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
|
||||
wc.hbrBackground = GetStockObject(WHITE_BRUSH);
|
||||
wc.lpszMenuName = NULL;
|
||||
wc.lpszClassName = "GNUstepWindowClass";
|
||||
|
|
Loading…
Reference in a new issue