comparison os2/dw.c @ 137:6a18312049fd

The splitbar needs to have the WS_CLIPCHILDREN style set.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 21 Oct 2002 14:26:27 +0000
parents 2584a4646b41
children b479002e013f
comparison
equal deleted inserted replaced
136:2584a4646b41 137:6a18312049fd
6584 HWND dw_splitbar_new(int type, HWND topleft, HWND bottomright, unsigned long id) 6584 HWND dw_splitbar_new(int type, HWND topleft, HWND bottomright, unsigned long id)
6585 { 6585 {
6586 HWND tmp = WinCreateWindow(HWND_OBJECT, 6586 HWND tmp = WinCreateWindow(HWND_OBJECT,
6587 SplitbarClassName, 6587 SplitbarClassName,
6588 NULL, 6588 NULL,
6589 WS_VISIBLE, 6589 WS_VISIBLE | WS_CLIPCHILDREN,
6590 0,0,2000,1000, 6590 0,0,2000,1000,
6591 NULLHANDLE, 6591 NULLHANDLE,
6592 HWND_TOP, 6592 HWND_TOP,
6593 id, 6593 id,
6594 NULL, 6594 NULL,