summaryrefslogtreecommitdiff
path: root/cli_ure/source/uno_bridge/cli_data.cxx
diff options
context:
space:
mode:
authorJean-Noël Rouvignac <jn.rouvignac@gmail.com>2013-01-30 11:44:23 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-01-30 12:54:40 +0000
commit97eb8a6e0eb830f37dcba64a51d725aab4c5ff53 (patch)
treea1a95b8249052d846a997ad1729758168d6a3b24 /cli_ure/source/uno_bridge/cli_data.cxx
parentf8569cd9a28a3a8856dba4ad53218aa6cc073521 (diff)
Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRING
Change-Id: Ie859cb2dfdc7103c379fce56be88eef8fe390afd Reviewed-on: https://gerrit.libreoffice.org/1924 Tested-by: Luboš Luňák <l.lunak@suse.cz> Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'cli_ure/source/uno_bridge/cli_data.cxx')
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli_ure/source/uno_bridge/cli_data.cxx b/cli_ure/source/uno_bridge/cli_data.cxx
index 373e4bf10a5f..48ad72c7a1a6 100644
--- a/cli_ure/source/uno_bridge/cli_data.cxx
+++ b/cli_ure/source/uno_bridge/cli_data.cxx
@@ -647,7 +647,7 @@ OUString mapCliTypeName(System::String^ typeName)
{
if (!bRightBracket)
throw BridgeRuntimeError(
- OUSTR("Typename is wrong. No matching brackets for sequence. Name is: ") +
+ "Typename is wrong. No matching brackets for sequence. Name is: " +
mapCliString(typeName));
bRightBracket = false;
dims ++;
@@ -656,7 +656,7 @@ OUString mapCliTypeName(System::String^ typeName)
{
if (bRightBracket)
throw BridgeRuntimeError(
- OUSTR("Typename is wrong. No matching brackets for sequence. Name is: ") +
+ "Typename is wrong. No matching brackets for sequence. Name is: " +
mapCliString(typeName));
break;
}
@@ -665,7 +665,7 @@ OUString mapCliTypeName(System::String^ typeName)
if (bRightBracket || cur < 0)
throw BridgeRuntimeError(
- OUSTR("Typename is wrong. ") +
+ "Typename is wrong. " +
mapCliString(typeName));
typeName = typeName->Substring(0, cur + 1);