diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-03-19 11:32:06 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-19 11:32:20 +0100 |
commit | 4c0c23af21db0b72541674c2352df04f48774e81 (patch) | |
tree | fe5697fbc7f793de73531e50711c5b39d9825923 /oox/source/ole/vbacontrol.cxx | |
parent | 8f2cf65ec9a450441b92ed1f638eda26231a9be7 (diff) |
Simplify equalsIgnoreAsciiCaseAscii[L] calls
Change-Id: If5201bd772aed245e8f7f8b900d76ffe4ca57b49
Diffstat (limited to 'oox/source/ole/vbacontrol.cxx')
-rw-r--r-- | oox/source/ole/vbacontrol.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/ole/vbacontrol.cxx b/oox/source/ole/vbacontrol.cxx index 6c311e251c0a..ad6eaf5b438a 100644 --- a/oox/source/ole/vbacontrol.cxx +++ b/oox/source/ole/vbacontrol.cxx @@ -779,12 +779,12 @@ void VbaUserForm::importForm( const Reference< XNameContainer >& rxDialogLib, while( !bExitLoop && !aFrameTextStrm.isEof() ) { aLine = aFrameTextStrm.readLine().trim(); - bExitLoop = aLine.equalsIgnoreAsciiCaseAscii( "End" ); + bExitLoop = aLine.equalsIgnoreAsciiCase( "End" ); if( !bExitLoop && VbaHelper::extractKeyValue( aKey, aValue, aLine ) ) { - if( aKey.equalsIgnoreAsciiCaseAscii( "Caption" ) ) + if( aKey.equalsIgnoreAsciiCase( "Caption" ) ) mxCtrlModel->importProperty( XML_Caption, lclGetQuotedString( aValue ) ); - else if( aKey.equalsIgnoreAsciiCaseAscii( "Tag" ) ) + else if( aKey.equalsIgnoreAsciiCase( "Tag" ) ) mxSiteModel->importProperty( XML_Tag, lclGetQuotedString( aValue ) ); } } |