From fed76fcf73fc06f8bc547ee5511768e3ddfa8356 Mon Sep 17 00:00:00 2001 From: Zolnai Tamás Date: Tue, 19 Aug 2014 10:09:02 +0200 Subject: Fix Insert 3D Model file dialog's "All supported formats" filter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems on some system the file dialog does not like spaces between the formats. (cherry picked from commit fd63ba45742e0886f15f907c03025b9dcc84d8ab) Conflicts: sd/source/ui/func/fuinsert.cxx Change-Id: Ifa69f4f210061209f7f0aa9223417d06b06b577a Reviewed-on: https://gerrit.libreoffice.org/11015 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara Reviewed-by: David Tardon Reviewed-by: Eike Rathke --- sd/source/ui/func/fuinsert.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx index e3fbd43b7fbc..cd0370011819 100644 --- a/sd/source/ui/func/fuinsert.cxx +++ b/sd/source/ui/func/fuinsert.cxx @@ -789,7 +789,7 @@ void FuInsert3DModel::DoExecute( SfxRequest& ) sfx2::FileDialogHelper aDlg( ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, 0 ); aDlg.SetTitle( "Insert 3D Model" ); - aDlg.AddFilter( "All supported formats", "*.json; *.dae; *.kmz" ); + aDlg.AddFilter( "All supported formats", "*.json;*.dae;*.kmz" ); aDlg.AddFilter( "JSON - GL Transmission Format", "*.json" ); aDlg.AddFilter( "DAE - COLLADA", "*.dae" ); aDlg.AddFilter( "KMZ - Keyhole Markup language Zipped", "*.kmz" ); -- cgit