summaryrefslogtreecommitdiff
path: root/padmin/source/helper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'padmin/source/helper.cxx')
-rw-r--r--padmin/source/helper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/padmin/source/helper.cxx b/padmin/source/helper.cxx
index a65915047f3b..1ca8803d7635 100644
--- a/padmin/source/helper.cxx
+++ b/padmin/source/helper.cxx
@@ -106,9 +106,9 @@ void padmin::FindFiles( const OUString& rDirectory, ::std::list< String >& rResu
OUString aSuffix = rSuffixes.getToken( nToken, ';' );
if( aFileName.Len() > aSuffix.getLength()+1 )
{
- String aExtension = aFileName.Copy( aFileName.Len()-aSuffix.getLength() );
+ OUString aExtension = aFileName.Copy( aFileName.Len()-aSuffix.getLength() );
if( aFileName.GetChar( aFileName.Len()-aSuffix.getLength()-1 ) == '.' &&
- aExtension.EqualsIgnoreCaseAscii( aSuffix ) )
+ aExtension.equalsIgnoreAsciiCase( aSuffix ) )
{
rResult.push_back( aFileName );
break;