diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-19 14:26:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-19 14:28:15 +0100 |
commit | 5537bb28ec2667018c101ad25bbbc9c52daaffb0 (patch) | |
tree | 3753f32badd05118070ccaee5cf001183f138c17 /sc | |
parent | a5bdf3c606b562a2af3dd4e4162b734abb1cb24c (diff) |
sc: Use appropriate OUString functions on string constants
Change-Id: Iefc8dcb25dd32acbc435bbf2aaa63572915d6753
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/extras/macros-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/extras/macros-test.cxx b/sc/qa/extras/macros-test.cxx index 3f210db0d68e..c2948e75f137 100644 --- a/sc/qa/extras/macros-test.cxx +++ b/sc/qa/extras/macros-test.cxx @@ -247,7 +247,7 @@ void ScMacrosTest::testVba() Any aRet; Sequence< sal_Int16 > aOutParamIndex; Sequence< Any > aOutParam; - bool bWorkbooksHandling = OUString( testInfo[i].sFileBaseName ).equalsAscii("Workbooks.") && !sTempDir.isEmpty() ; + bool bWorkbooksHandling = OUString( testInfo[i].sFileBaseName ) == "Workbooks." && !sTempDir.isEmpty() ; if ( bWorkbooksHandling ) { |