Kaydet (Commit) 358b60b3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Minor terminology clean-up

Change-Id: I4fa4431978f049a7b5b201d89743f909bc120ff4
üst 73fc5ade
......@@ -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");
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment