summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2009-10-27 12:27:51 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2009-10-27 12:27:51 +0000
commit1e7a88b028f7f8cae82b194418eb4847b34b4421 (patch)
tree9dbef2007575d327ee9e31cbd08bcb252b43b70a
parent7e9617c6aeaee27ab2bc9a58c6777a18702e66bb (diff)
CWS-TOOLING: integrate CWS oooimprovement5
2009-10-14 15:43:16 +0200 b_michaelsen r276902 : #i105835# removing explict flushes in comphelper as logging::Logger handles flushing 2009-10-14 15:40:00 +0200 b_michaelsen r276901 : #i105835# logging::Filehandler::flush flushes, logging::Logger::publish flushes all handlers 2009-10-14 14:56:03 +0200 b_michaelsen r276900 : #i105835# flushing filehandler in uieventslogger after each logged record because of buffered i/o 2009-10-14 14:52:32 +0200 b_michaelsen r276899 : #i105835# loading the user feedback log readonly with the csv-filter (no need for an import dialog) 2009-10-14 14:40:46 +0200 od r276898 : #i105571# method <SwFntObj::GetCrsrOfst(..)> - skip character cells also for CJK
-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 28989080ca..b988c7b75b 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 );