# HG changeset patch # User Claus Gittinger # Date 1459505478 -7200 # Node ID b65ce693d0e6971c363bd5510ad1ce68e842aea1 # Parent be844d752234f4df192fe24716e3b50f13369a2f #BUGFIX class: Win32FileDialog changed: #fillStruct diff -r be844d752234 -r b65ce693d0e6 Win32FileDialog.st --- a/Win32FileDialog.st Fri Apr 01 11:33:43 2016 +0200 +++ b/Win32FileDialog.st Fri Apr 01 12:11:18 2016 +0200 @@ -883,7 +883,7 @@ |maxPath lpstrFileInOut| maxPath := 1024. - lpstrFileInOut := ExternalBytes new:maxPath. + lpstrFileInOut := lpstrFile := ExternalBytes new:maxPath. lpstrFileInOut replaceFrom:1 to:fileName size with:fileName startingAt:1. lpstrFilter := ExternalBytes newNullTerminatedFromString: self filters.