changeset 178:770da0fc4c0d

Fixed a small regression from the watcom changes.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 01 Dec 2002 16:19:53 +0000
parents e3dd5c765775
children 6803aba19dae
files os2/dw.c
diffstat 1 files changed, 13 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/os2/dw.c	Sun Dec 01 14:33:43 2002 +0000
+++ b/os2/dw.c	Sun Dec 01 16:19:53 2002 +0000
@@ -4211,21 +4211,23 @@
 {
 	WindowData *blah = calloc(1, sizeof(WindowData));
 	SLDCDATA sldcData = { 0, 0, 0, 0, 0 };
-	HWND tmp = WinCreateWindow(HWND_OBJECT,
-							   WC_SLIDER,
-							   "",
-							   WS_VISIBLE | SLS_SNAPTOINCREMENT |
-							   (vertical ? SLS_VERTICAL : SLS_HORIZONTAL),
-							   0,0,2000,1000,
-							   NULLHANDLE,
-							   HWND_TOP,
-							   id,
-							   &sldcData,
-							   NULL);
+	HWND tmp;
 
 	sldcData.cbSize = sizeof(SLDCDATA);
     sldcData.usScale1Increments = increments;
 
+	tmp = WinCreateWindow(HWND_OBJECT,
+						  WC_SLIDER,
+						  "",
+						  WS_VISIBLE | SLS_SNAPTOINCREMENT |
+						  (vertical ? SLS_VERTICAL : SLS_HORIZONTAL),
+						  0,0,2000,1000,
+						  NULLHANDLE,
+						  HWND_TOP,
+						  id,
+						  &sldcData,
+						  NULL);
+
 	blah->oldproc = WinSubclassWindow(tmp, _entryproc);
 	WinSetWindowPtr(tmp, QWP_USER, blah);
 	return tmp;