diff os2/dw.c @ 119:1cad81b7cc4c

Implemented initial splitbar code on Unix. And made some fixes for setting the ID on all platforms, but specifically windows.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 19 Oct 2002 06:36:41 +0000
parents d785ee5adf02
children 63f61a702b17
line wrap: on
line diff
--- a/os2/dw.c	Sat Oct 19 03:41:36 2002 +0000
+++ b/os2/dw.c	Sat Oct 19 06:36:41 2002 +0000
@@ -6703,7 +6703,7 @@
  * Returns:
  *       A handle to a splitbar window or NULL on failure.
  */
-HWND dw_splitbar_new(int type, HWND topleft, HWND bottomright)
+HWND dw_splitbar_new(int type, HWND topleft, HWND bottomright, unsigned long id)
 {
 	HWND tmp = WinCreateWindow(HWND_OBJECT,
 							   SplitbarClassName,
@@ -6712,7 +6712,7 @@
 							   0,0,2000,1000,
 							   NULLHANDLE,
 							   HWND_TOP,
-							   0L,
+							   id,
 							   NULL,
 							   NULL);
 	if(tmp)