diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/test/ole/cpnt/cpnt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx index 6def520caba3..dba797d49699 100644 --- a/extensions/test/ole/cpnt/cpnt.cxx +++ b/extensions/test/ole/cpnt/cpnt.cxx @@ -1490,7 +1490,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac if( any.getValueTypeClass() == TypeClass_STRUCT) { SimpleStruct* pStruct= ( SimpleStruct*) any.getValue(); - pStruct->message= OUString("This struct was created in OleTest"); + pStruct->message= "This struct was created in OleTest"; SimpleStruct aStruct; any >>= aStruct; @@ -1638,7 +1638,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac if( any.getValueTypeClass() == TypeClass_STRUCT) { SimpleStruct* pStruct= ( SimpleStruct*) any.getValue(); - pStruct->message= OUString("This struct was created in OleTest"); + pStruct->message= "This struct was created in OleTest"; any >>= aStruct; } } @@ -1794,7 +1794,7 @@ void SAL_CALL OComponent::testInterface( const Reference< XCallback >& xCallbac if( any.getValueTypeClass() == TypeClass_STRUCT) { SimpleStruct* pStruct= ( SimpleStruct*) any.getValue(); - pStruct->message= OUString("This struct was created in OleTest"); + pStruct->message = "This struct was created in OleTest"; any >>= aStruct; } } |