diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 13:22:53 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 13:22:53 +0100 |
commit | 88096c2d4a139d943a73db416b25a55c925e8fb7 (patch) | |
tree | 39582f9dd4308cbd93dcb61feb17f0d96b55639c /uui | |
parent | 3472541ab7118ad6c81cd401ce9018be7c662659 (diff) |
matchIgnoreAsciiCaseAsciiL() -> matchIgnoreAsciiCase()
Change-Id: I6767c62265dcfbb55ce086385802db59d4d0b177
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl-ioexceptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uui/source/iahndl-ioexceptions.cxx b/uui/source/iahndl-ioexceptions.cxx index 1412a53529c0..4c1953199d5e 100644 --- a/uui/source/iahndl-ioexceptions.cxx +++ b/uui/source/iahndl-ioexceptions.cxx @@ -85,7 +85,7 @@ getResourceNameRequestArgument(uno::Sequence< uno::Any > const & rArguments, // Use the resource name only for file URLs, to avoid confusion: //TODO! work with ucp locality concept instead of hardcoded "file"? if (pValue - && pValue->matchIgnoreAsciiCaseAsciiL("file:", pValue->getLength())) + && pValue->matchIgnoreAsciiCase("file:")) getStringRequestArgument(rArguments, "ResourceName", pValue); return true; } |