summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-09 20:21:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-09 20:33:30 +0000
commit58ef08f5e1336acbcfcb9f6f7a6449a0eae518a7 (patch)
tree76f6dd14b32e667e5f5cdabb9b6e829bb58cd73f /svl
parent4e83af0dc7d41c458f9d971342c62103fad51d0f (diff)
toLower->lowercase
Diffstat (limited to 'svl')
-rw-r--r--svl/source/misc/restrictedpaths.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/misc/restrictedpaths.cxx b/svl/source/misc/restrictedpaths.cxx
index d743247e94fe..ffdcdc6d51e2 100644
--- a/svl/source/misc/restrictedpaths.cxx
+++ b/svl/source/misc/restrictedpaths.cxx
@@ -105,7 +105,7 @@ namespace svt
#ifdef WNT
// on windows, assume that the relevant file systems are case insensitive,
// thus normalize the URL
- m_sCheckURL = m_aSysLocale.GetCharClass().toLower( m_sCheckURL, 0, m_sCheckURL.Len() );
+ m_sCheckURL = m_aSysLocale.GetCharClass().lowercase( m_sCheckURL, 0, m_sCheckURL.Len() );
#endif
}
@@ -114,7 +114,7 @@ namespace svt
#ifdef WNT
// on windows, assume that the relevant file systems are case insensitive,
// thus normalize the URL
- String sApprovedURL( m_aSysLocale.GetCharClass().toLower( _rApprovedURL, 0, _rApprovedURL.Len() ) );
+ String sApprovedURL( m_aSysLocale.GetCharClass().lowercase( _rApprovedURL, 0, _rApprovedURL.Len() ) );
#else
String sApprovedURL( _rApprovedURL );
#endif