summaryrefslogtreecommitdiff
path: root/fpicker/source/win32/VistaFilePicker.cxx
diff options
context:
space:
mode:
authorIlhan Yesil <ilhanyesil@gmx.de>2018-09-10 16:01:31 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-11-13 17:54:52 +0100
commit1b50fa88b148739a7b192ba70f08af2c6e326fd2 (patch)
tree18109155d881e346fdbcce222da426f7bd7adced /fpicker/source/win32/VistaFilePicker.cxx
parentafd4f48d164ca72a024159e0c6b7a49147351f64 (diff)
tdf#119747 FileSaveDialog: Windows dialog shows only one extension.
A temporary composed list of file types and extension types is build from the original list and provided to the IFileSaveDialog object, so that this dialog shows only one extension. Change-Id: Iae01c3e889ea38034332fc29e4cc397941930ac0 Reviewed-on: https://gerrit.libreoffice.org/60268 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'fpicker/source/win32/VistaFilePicker.cxx')
-rw-r--r--fpicker/source/win32/VistaFilePicker.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/win32/VistaFilePicker.cxx b/fpicker/source/win32/VistaFilePicker.cxx
index 0737100d07e6..e1eb66a9ce83 100644
--- a/fpicker/source/win32/VistaFilePicker.cxx
+++ b/fpicker/source/win32/VistaFilePicker.cxx
@@ -119,7 +119,7 @@ void SAL_CALL VistaFilePicker::appendFilter(const OUString& sTitle ,
{
RequestRef rRequest(new Request());
rRequest->setRequest (VistaFilePickerImpl::E_APPEND_FILTER);
- rRequest->setArgument(PROP_FILTER_TITLE, sTitle );
+ rRequest->setArgument(PROP_FILTER_TITLE, sTitle);
rRequest->setArgument(PROP_FILTER_VALUE, sFilter);
m_aAsyncExecute.triggerRequestThreadAware(rRequest, AsyncRequests::NON_BLOCKED);