summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-05-20 09:56:26 +0100
committerNoel Power <noel.power@suse.com>2013-05-20 12:19:36 +0100
commit175509176433cf5df2d98718e1a6f9cf5bbe9658 (patch)
tree839b28573e5fc58e767fbc7c08fe1b0a34985058 /basic
parentd7f93b544de67218659bc07bb54adc04f94769a6 (diff)
fix wildcard handling regression( for basic functions like Dir ) fdo#64536
Tweak another fallout from String->OUString Change-Id: I3932bdb441fe6b08cefa6331870956664ade77bd
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/methods.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index ff85d10bd49e..2fd3eb5aae07 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -2619,7 +2619,7 @@ OUString implSetupWildcard( const OUString& rFileParam, SbiRTLData* pRTLData )
// Is there a pure file name left? Otherwise the path is
// invalid anyway because it was not accepted by OSL before
- if (string::equals(aPureFileName, '*'))
+ if (!string::equals(aPureFileName, '*'))
{
pRTLData->pWildCard = new WildCard( aPureFileName );
}