summaryrefslogtreecommitdiff
path: root/oox/source/ole/axbinaryreader.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-28 17:01:04 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-28 17:01:12 +0100
commit3f4b29b8f2f99c83ba41b4e1c3e485d659f9e54a (patch)
tree45cfd054d9197162ae6aaa18e5ed9c406902d120 /oox/source/ole/axbinaryreader.cxx
parent6684071a6c0d7d9ed0f050772c486dd2509213c6 (diff)
Replace suitable equalsAscii calls with equalsAsciiL.
Diffstat (limited to 'oox/source/ole/axbinaryreader.cxx')
-rw-r--r--oox/source/ole/axbinaryreader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx
index 585ed4f22c22..e5c0790ccdc8 100644
--- a/oox/source/ole/axbinaryreader.cxx
+++ b/oox/source/ole/axbinaryreader.cxx
@@ -150,7 +150,7 @@ bool AxFontData::importGuidAndFont( BinaryInputStream& rInStrm )
OUString aGuid = OleHelper::importGuid( rInStrm );
if( aGuid.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "{AFC20920-DA4E-11CE-B943-00AA006887B4}" ) ) )
return importBinaryModel( rInStrm );
- if( aGuid.equalsAscii( OLE_GUID_STDFONT ) )
+ if( aGuid.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( OLE_GUID_STDFONT ) ) )
return importStdFont( rInStrm );
return false;
}