diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-08-19 10:09:02 +0200 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-08-19 10:09:37 +0200 |
commit | fd63ba45742e0886f15f907c03025b9dcc84d8ab (patch) | |
tree | a4056b04b79440215918897533737f7266106387 /sd | |
parent | 83991055eed93bb0ad96e3690062798a57df6c74 (diff) |
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.
Change-Id: Ifa69f4f210061209f7f0aa9223417d06b06b577a
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/fuinsert.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx index 6a97b07210e0..4d20dcb17987 100644 --- a/sd/source/ui/func/fuinsert.cxx +++ b/sd/source/ui/func/fuinsert.cxx @@ -786,7 +786,7 @@ void FuInsert3DModel::DoExecute( SfxRequest& ) aDlg.SetTitle( "Insert 3D Model" ); #if HAVE_FEATURE_COLLADA - aDlg.AddFilter( "All supported formats", "*.json; *.dae; *.kmz" ); + aDlg.AddFilter( "All supported formats", "*.json;*.dae;*.kmz" ); #else aDlg.AddFilter( "All supported formats", "*.json" ); #endif |