summaryrefslogtreecommitdiff
path: root/oox/source/ole/axbinaryreader.cxx
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2011-01-28 16:59:16 +0000
committerMichael Meeks <michael.meeks@novell.com>2011-01-28 16:59:16 +0000
commitc4a384a3fc10147dfd611e388cd69e35fa5d0689 (patch)
tree9f8578bd41193a0b8f3fa1b0da02002370cd49e9 /oox/source/ole/axbinaryreader.cxx
parent3f4b29b8f2f99c83ba41b4e1c3e485d659f9e54a (diff)
revert incorrect usage of RTL_CONSTASCII_STRINGPARAM on char * pointers
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 e5c0790ccdc8..585ed4f22c22 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.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( OLE_GUID_STDFONT ) ) )
+ if( aGuid.equalsAscii( OLE_GUID_STDFONT ) )
return importStdFont( rInStrm );
return false;
}