https://bz.apache.org/bugzilla/show_bug.cgi?id=62127
--- Comment #7 from Felix Schumacher <[email protected]> --- Created attachment 35741 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35741&action=edit Store filename as string not as a file The FileEditor component is used to edit/select filenames. It currently stores the filename as a File. That is problematic as java will convert slashes (/) to backslashes (\) when running on Windows. This patch will store the filenames as simple String instances. That way no conversion will be done by java, except when filenames get selected through a file chooser dialog. In that case the patch will convert the backslashes to slashes when run on Windows. -- You are receiving this mail because: You are the assignee for the bug.
