summaryrefslogtreecommitdiff
path: root/cli_ure/source
diff options
context:
space:
mode:
Diffstat (limited to 'cli_ure/source')
-rw-r--r--cli_ure/source/uno_bridge/cli_data.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli_ure/source/uno_bridge/cli_data.cxx b/cli_ure/source/uno_bridge/cli_data.cxx
index 219438a2fb66..a5e2f38eab87 100644
--- a/cli_ure/source/uno_bridge/cli_data.cxx
+++ b/cli_ure/source/uno_bridge/cli_data.cxx
@@ -1103,11 +1103,11 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ cli_data,
void * p = (char *) uno_data + comp_td->pMemberOffsets[ nPos ];
//When using polymorphic structs then the parameterized members can be null.
//Then we set a default value.
- bool bDefault = ((struct_td != NULL
+ bool bDefault = (struct_td != NULL
&& struct_td->pParameterizedTypes != NULL
&& struct_td->pParameterizedTypes[nPos] == sal_True
- && val == nullptr)
- || cli_data == nullptr) ? true : false;
+ && val == nullptr)
+ || cli_data == nullptr;
switch (member_type->eTypeClass)
{
case typelib_TypeClass_CHAR:
@@ -1504,7 +1504,7 @@ void Bridge::map_to_cli(
*cli_data= *(__wchar_t const*)uno_data;
break;
case typelib_TypeClass_BOOLEAN:
- *cli_data = (*(bool const*)uno_data) == sal_True ? true : false;
+ *cli_data = (*(bool const*)uno_data) == sal_True;
break;
case typelib_TypeClass_BYTE:
*cli_data = *(unsigned char const*) uno_data;