diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-10-05 10:08:34 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-10-05 10:08:59 +0200 |
commit | 3f411f36319d91e1288a8f0d4c9295e7a4b24dc8 (patch) | |
tree | b67a91bee04d770d3d99f653263a5889e812ab6f /cli_ure | |
parent | 8703f3e3585e30631e55dab7d8a8f42e546a7c79 (diff) |
Adapt to removal of dangerous operators
Diffstat (limited to 'cli_ure')
-rw-r--r-- | cli_ure/source/climaker/climaker_app.cxx | 2 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_data.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx index 907054c0b8bb..3d34498c0f2f 100644 --- a/cli_ure/source/climaker/climaker_app.cxx +++ b/cli_ure/source/climaker/climaker_app.cxx @@ -572,7 +572,7 @@ SAL_IMPLEMENT_MAIN() // setup assembly info: xxx todo set more? e.g. avoid strong versioning AssemblyName * assembly_name = new AssemblyName(); assembly_name->set_CodeBase( output_dir ); - assembly_name->set_Name( name ); + assembly_name->set_Name( name.getStr() ); if (kp != NULL) assembly_name->set_KeyPair(kp); diff --git a/cli_ure/source/uno_bridge/cli_data.cxx b/cli_ure/source/uno_bridge/cli_data.cxx index 23288d0074a6..30dce98d5332 100644 --- a/cli_ure/source/uno_bridge/cli_data.cxx +++ b/cli_ure/source/uno_bridge/cli_data.cxx @@ -605,7 +605,7 @@ System::String* mapPolymorphicName(System::String* unoName, bool bCliToUno) index = cur; if (bCliToUno) { - builder->Append(mapCliTypeName(sParam)); + builder->Append(mapCliTypeName(sParam).getStr()); } else { |