diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-19 11:13:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-19 11:14:14 +0000 |
commit | 4582eabb00494b0e29a899e78084ebac895c64a8 (patch) | |
tree | 4734a4fb165b76ec2dd8d40b24e4e110bb1c6bc5 | |
parent | d6e839e9e4ce5470c304dbe2b87dd8b0bb07db59 (diff) |
push build along a bit further
Change-Id: I6b662e8588153a9437615de0652e3169fc867b82
-rw-r--r-- | cui/source/options/optsave.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optsave.cxx b/cui/source/options/optsave.cxx index 312aa12bc4be..2767ef9e0d9d 100644 --- a/cui/source/options/optsave.cxx +++ b/cui/source/options/optsave.cxx @@ -403,9 +403,9 @@ void SfxSaveTabPage::Reset( const SfxItemSet* ) sal_IntPtr nData = reinterpret_cast<sal_IntPtr>(aDocTypeLB->GetEntryData(n)); OUString sCommand; sCommand = "matchByDocumentService=%1:iflags=" + - OUString::number(static_cast<sal_Int32>(SfxFilterFlags::IMPORT|SfxFilterFlags::EXPORT)) + + OUString::number(static_cast<int>(SfxFilterFlags::IMPORT|SfxFilterFlags::EXPORT)) + ":eflags=" + - OUString::number(static_cast<sal_Int32>(SfxFilterFlags::NOTINFILEDLG)) + + OUString::number(static_cast<int>(SfxFilterFlags::NOTINFILEDLG)) + ":default_first"; OUString sReplace; switch(nData) |