summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-02-15 21:55:57 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-02-15 21:55:57 +0100
commit715ac8c1b402e33930317a69bbdd61ad88133740 (patch)
tree1a4d87689473729c4e7cfd3f2052db7f64652220 /svtools
parentab0096ed68cdc08906f518d3499a8e1afc5ba80c (diff)
Fixed some more apparent misuses of RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/imap2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/imap2.cxx b/svtools/source/misc/imap2.cxx
index 60225a86d9f9..c29525b3cabb 100644
--- a/svtools/source/misc/imap2.cxx
+++ b/svtools/source/misc/imap2.cxx
@@ -536,8 +536,8 @@ sal_uLong ImageMap::ImpDetectFormat( SvStream& rIStm )
aStr = aStr.toAsciiLowerCase();
if ( (aStr.indexOfL(RTL_CONSTASCII_STRINGPARAM("rect")) != -1) ||
- (aStr.indexOfL(RTL_CONSTASCII_USTRINGPARAM("circ")) != -1) ||
- (aStr.indexOfL(RTL_CONSTASCII_USTRINGPARAM("poly")) != -1) )
+ (aStr.indexOfL(RTL_CONSTASCII_STRINGPARAM("circ")) != -1) ||
+ (aStr.indexOfL(RTL_CONSTASCII_STRINGPARAM("poly")) != -1) )
{
if ( ( aStr.indexOf('(') != -1 ) &&
( aStr.indexOf(')') != -1 ) )