summaryrefslogtreecommitdiff
path: root/writerfilter/source/filter/WriterFilterDetection.cxx
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-27 17:37:28 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-27 17:37:28 +0100
commit22d71781ea77d1950641354699dc1dd7dcd97a8d (patch)
tree912c90e2223b77807036e4e61a70b2000b3e11ae /writerfilter/source/filter/WriterFilterDetection.cxx
parent17e4b5ee63d8ba0a597d1b490c5a1d28b35b350b (diff)
RTL_CONSTASCII_USTRINGPARAM in filters 9 (build problem in sal ?)
Diffstat (limited to 'writerfilter/source/filter/WriterFilterDetection.cxx')
-rw-r--r--writerfilter/source/filter/WriterFilterDetection.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/filter/WriterFilterDetection.cxx b/writerfilter/source/filter/WriterFilterDetection.cxx
index 1bcb5f2cee7e..8e1f813c37ab 100644
--- a/writerfilter/source/filter/WriterFilterDetection.cxx
+++ b/writerfilter/source/filter/WriterFilterDetection.cxx
@@ -97,10 +97,10 @@ OUString WriterFilterDetection::detect( uno::Sequence< beans::PropertyValue >& r
{
SotStorageRef xStg = new SotStorage( pStream, FALSE );
- bool bTable2 = xStg->IsContained( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("1Table")));
+ bool bTable2 = xStg->IsContained( rtl::OUString::createFromAscii("1Table" ));
SotStorageStreamRef xRef =
- xStg->OpenSotStream(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("WordDocument")),
+ xStg->OpenSotStream(rtl::OUString::createFromAscii("WordDocument"),
STREAM_STD_READ | STREAM_NOCREATE );