diff -r 7af555a09d28 -r 796bfa9aacd6 Win32FileDialog.st --- a/Win32FileDialog.st Tue Feb 11 20:56:38 2014 +0100 +++ b/Win32FileDialog.st Tue Feb 11 21:12:57 2014 +0100 @@ -706,7 +706,7 @@ openFileNameStruct flags:style ]. openFileNameStructExternalBytes := ExternalBytes from:openFileNameStruct asByteArray. - rslt := OperatingSystem getOpenFilename:openFileNameStructExternalBytes address. + rslt := OperatingSystem getOpenFilename:openFileNameStructExternalBytes. rslt ifTrue:[ self getFileName ] ifFalse:[ @@ -719,6 +719,7 @@ ]. "Created: / 23-01-2011 / 10:58:30 / cg" + "Modified: / 11-02-2014 / 11:24:23 / cg" ! open @@ -1205,11 +1206,11 @@ !Win32FileDialog class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/Win32FileDialog.st,v 1.14 2013-09-24 19:56:30 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Win32FileDialog.st,v 1.15 2014-02-11 20:12:57 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Win32FileDialog.st,v 1.14 2013-09-24 19:56:30 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Win32FileDialog.st,v 1.15 2014-02-11 20:12:57 cg Exp $' ! !