summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2009-11-02 11:26:18 +0100
committerVladimir Glazunov <vg@openoffice.org>2009-11-02 11:26:18 +0100
commitcc423d4be4338cbd81eed9f96f7c7a277da0ee88 (patch)
tree1b9c5f240f7153355dd035fe0357e30c062a1ee9
parente250be94fcee1117198e088b85747da7dee6472a (diff)
parent6b43d60ce9427f002ebaab11da48e5c17fb9e7de (diff)
CWS-TOOLING: integrate CWS oooimprovement5_DEV300
Notes
split repo tag: libs-core_ooo/DEV300_m64
-rw-r--r--svx/source/cui/optimprove2.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/svx/source/cui/optimprove2.cxx b/svx/source/cui/optimprove2.cxx
index 28989080ca0a..b988c7b75bad 100644
--- a/svx/source/cui/optimprove2.cxx
+++ b/svx/source/cui/optimprove2.cxx
@@ -149,7 +149,13 @@ IMPL_LINK( SvxImprovementOptionsPage, HandleShowData, PushButton*, EMPTYARG )
{
::rtl::OUString sLogFile( m_sLogPath );
sLogFile += C2S("/Current.csv");
- uno::Sequence< beans::PropertyValue > aArgs;
+ uno::Sequence< beans::PropertyValue > aArgs(3);
+ aArgs[0].Name = ::rtl::OUString::createFromAscii("FilterName");
+ aArgs[0].Value = uno::makeAny(::rtl::OUString::createFromAscii("Text - txt - csv (StarCalc)"));
+ aArgs[1].Name = ::rtl::OUString::createFromAscii("FilterOptions");
+ aArgs[1].Value = uno::makeAny(::rtl::OUString::createFromAscii("44,34,12,1,"));
+ aArgs[2].Name = ::rtl::OUString::createFromAscii("ReadOnly");
+ aArgs[2].Value = uno::makeAny(true);
uno::Reference< lang::XComponent > xDoc = ::comphelper::SynchronousDispatch::dispatch(
xDesktop, sLogFile, C2S("_default"), 0, aArgs );