WinWorkstation.st
changeset 3526 e9c3f08c2305
parent 3525 0afbeec72edb
child 3544 6c59714157cd
--- a/WinWorkstation.st	Mon Oct 15 10:14:23 2001 +0200
+++ b/WinWorkstation.st	Mon Oct 15 10:43:49 2001 +0200
@@ -12066,7 +12066,7 @@
 	hWndOwner = _HWNDVal(ownerId);
     }
 
-    ofn.lStructSize = sizeof(ofn);
+    ofn.lStructSize = OPENFILENAME_SIZE_VERSION_400; // sizeof(ofn);
     ofn.hwndOwner = hWndOwner;
     ofn.hInstance = NULL;
 
@@ -12217,15 +12217,6 @@
 	}
     }
 
-    ofn.Flags = 0
-		| OFN_ENABLESIZING
-		| OFN_HIDEREADONLY    
-		| OFN_EXPLORER
-#ifdef OFN_ENABLESIZING
-		| OFN_ENABLESIZING
-#endif
-		;
-
     if (isSaveDialog == true) {
 	if (blocking == true) {
 	    __rslt = GetSaveFileName(&ofn);
@@ -12317,7 +12308,7 @@
 	flags:flags
 	filter:filterArrayOrNil 
 	extension:extensionOrNil
-	blocking:(OperatingSystem isMSWINDOWSNTlike not)
+	blocking:false
 
     "
      Display 
@@ -14233,6 +14224,6 @@
 !WinWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.204 2001-10-15 08:14:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WinWorkstation.st,v 1.205 2001-10-15 08:43:49 cg Exp $'
 ! !
 WinWorkstation initialize!