summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-08-19 10:09:02 +0200
committerEike Rathke <erack@redhat.com>2014-08-22 10:58:47 -0500
commitfed76fcf73fc06f8bc547ee5511768e3ddfa8356 (patch)
tree9ac1c78eac3e9df49d057e91b2d96d4aca4bf91a
parentfdo#82427 disambiguate "NOT LIKE 'foo'" (diff)
downloadcore-fed76fcf73fc06f8bc547ee5511768e3ddfa8356.tar.gz
core-fed76fcf73fc06f8bc547ee5511768e3ddfa8356.zip
Fix Insert 3D Model file dialog's "All supported formats" filter
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 <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com> Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r--sd/source/ui/func/fuinsert.cxx2
1 files changed, 1 insertions, 1 deletions
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" );