summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-11 09:24:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-11 09:29:44 +0200
commit358b60b3b172968a7605b428af01df456d7669b2 (patch)
treecf7a8b6f794b151325cf521afa4534b491abfb43
parent73fc5adecf090ae860a869f7b279c3bad7925d5b (diff)
Minor terminology clean-up
Change-Id: I4fa4431978f049a7b5b201d89743f909bc120ff4
-rwxr-xr-xcodemaker/source/cppumaker/cpputype.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx
index 511cffb73308..446e1f94b91b 100755
--- a/codemaker/source/cppumaker/cpputype.cxx
+++ b/codemaker/source/cppumaker/cpputype.cxx
@@ -495,7 +495,7 @@ void CppuType::dumpInitializer(
break;
default:
throw CannotDumpException(
- "unexpected type \"" + name
+ "unexpected entity \"" + name
+ "\" in call to CppuType::dumpInitializer");
}
}
@@ -789,7 +789,7 @@ void CppuType::dumpType(
break;
default:
throw CannotDumpException(
- "unexpected type \"" + name + "\" in call to CppuType::dumpType");
+ "unexpected entity \"" + name + "\" in call to CppuType::dumpType");
}
for (sal_Int32 i = 0; i != k; ++i) {
out << " >";
@@ -829,7 +829,7 @@ void CppuType::dumpCppuGetType(FileStream & out, OUString const & name) {
break;
default:
throw CannotDumpException(
- "unexpected type \"" + name
+ "unexpected entity \"" + name
+ "\" in call to CppuType::dumpCppuGetType");
}
}
@@ -859,7 +859,7 @@ bool CppuType::passByReference(OUString const & name) const {
return true;
default:
throw CannotDumpException(
- "unexpected type \"" + name
+ "unexpected entity \"" + name
+ "\" in call to CppuType::passByReference");
}
}
@@ -3829,7 +3829,7 @@ void produce(
break;
default:
throw CannotDumpException(
- "unexpected type \"" + name + "\" in call to produce");
+ "unexpected entity \"" + name + "\" in call to produce");
}
}