summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/tree
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-20 11:30:00 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-20 11:30:00 +0100
commit7e56fec5de92f21c9ae704ad64c4325ac8661f55 (patch)
tree1271c537343f04da669d2a5c23d0f20d20bbac6a /sdext/source/pdfimport/tree
parent6bd54fca68e01fb4178fd157822e7d64e79815cb (diff)
Replace suitable equalsAscii calls with equalsAsciiL.
Done with sed -i 's%\(\.equalsAscii\)(\(\s\?"[^"]\+"\)\(\s\?\))%\1L(\3RTL_CONSTASCII_STRINGPARAM(\2\3)\3)%g'.
Diffstat (limited to 'sdext/source/pdfimport/tree')
-rw-r--r--sdext/source/pdfimport/tree/style.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/tree/style.cxx b/sdext/source/pdfimport/tree/style.cxx
index 01585029049a..d2658ad5681b 100644
--- a/sdext/source/pdfimport/tree/style.cxx
+++ b/sdext/source/pdfimport/tree/style.cxx
@@ -228,7 +228,7 @@ void StyleContainer::emit( EmitContext& rContext,
{
if( it->second.Name.equals( "style:master-page" ) )
aMasterPageSection.push_back( it->first );
- else if( getStyleName( it->first ).equalsAscii( "standard" ) )
+ else if( getStyleName( it->first ).equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "standard" ) ) )
aOfficeStyleSection.push_back( it->first );
else
aAutomaticStyleSection.push_back( it->first );