WinWorkstation.st
changeset 3544 6c59714157cd
parent 3526 e9c3f08c2305
child 3548 5c33ea9fc4f3
--- a/WinWorkstation.st	Fri Nov 09 22:48:31 2001 +0100
+++ b/WinWorkstation.st	Sat Nov 10 18:03:38 2001 +0100
@@ -12066,7 +12066,11 @@
 	hWndOwner = _HWNDVal(ownerId);
     }
 
+#ifdef OPENFILENAME_SIZE_VERSION_400
     ofn.lStructSize = OPENFILENAME_SIZE_VERSION_400; // sizeof(ofn);
+#else
+    ofn.lStructSize = sizeof(ofn);
+#endif
     ofn.hwndOwner = hWndOwner;
     ofn.hInstance = NULL;
 
@@ -14224,6 +14228,6 @@
 !WinWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.205 2001-10-15 08:43:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.206 2001-11-10 17:03:38 cg Exp $'
 ! !
 WinWorkstation initialize!