https://bugs.documentfoundation.org/show_bug.cgi?id=154462
--- Comment #6 from Jean-Pierre Ledure <[email protected]> --- The root cause is: when running next Basic code: Sub pickafile() a = CreateUnoService("com.sun.star.ui.dialogs.FilePicker") a.appendFilter("*.*", "*.*") a.appendFilter("*.*", "*.*") End Sub the error occurs on the 2nd occurrence of line: a.appendFilter("*.*", "*.*") in the same graphical environments as described above: gen, gtk3: error kf5, win: no error The error does not happen in next code: Sub pickafile2() a = CreateUnoService("com.sun.star.ui.dialogs.FilePicker") a.appendFilter("*.*", "*.*") a = CreateUnoService("com.sun.star.ui.dialogs.FilePicker") a.appendFilter("*.*", "*.*") End Sub -- You are receiving this mail because: You are the assignee for the bug.
