summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-09-29 17:46:36 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2015-09-30 06:00:18 +0000
commitce343470c385dc8390bbc4bf3e85457c1d55e0ec (patch)
tree79ec49cc25fbc427b668bc56314a082551f1a263 /cli_ure
parent9e4c87be31732ed076a059128d2e20451697d225 (diff)
Fix typos
Change-Id: Iaff7e38dd5beac48e1643e369e4240aa736c35ea Reviewed-on: https://gerrit.libreoffice.org/18941 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/climaker/climaker_emit.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli_ure/source/climaker/climaker_emit.cxx b/cli_ure/source/climaker/climaker_emit.cxx
index 51bed9ab4ac0..2ba5c62aa5af 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -1369,7 +1369,7 @@ Assembly ^ TypeEmitter::type_resolve(
code->Emit( Emit::OpCodes::Ldarg_0 );
code->Emit(
Emit::OpCodes::Newobj,
- //GetConstructor requies that the member types of the object which is to be constructed are already known.
+ //GetConstructor requires that the member types of the object which is to be constructed are already known.
field_type->GetConstructor(
gcnew array< ::System::Type^> ( 0 ) ) );
code->Emit( Emit::OpCodes::Stfld, field );
@@ -1638,7 +1638,7 @@ Assembly ^ TypeEmitter::type_resolve(
//We create a try/ catch around the createInstanceWithContext, etc. functions
//There are 3 cases
- //1. function do not specify exceptions. Then RuntimeExceptions are retrhown and other
+ //1. function do not specify exceptions. Then RuntimeExceptions are re-thrown and other
// exceptions produce a DeploymentException.
//2. function specify Exception. Then all exceptions fly through
//3. function specifies exceptions but no Exception. Then these are rethrown
@@ -1829,7 +1829,7 @@ Assembly ^ TypeEmitter::type_resolve(
//catch (unoidl.com.sun.star.uno.Exception) {throw DeploymentException...}
ilGen->BeginCatchBlock(type_uno_exception);
- //Define the local variabe that keeps the exception
+ //Define the local variable that keeps the exception
Emit::LocalBuilder ^ local_exception = ilGen->DeclareLocal(
type_uno_exception);