summaryrefslogtreecommitdiff
path: root/cppu/source/uno/assign.hxx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-06-22 08:23:44 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-06-22 08:23:44 +0000
commit73a2d8f719fb2715f362f9966aebfed85b5064ce (patch)
treedcbacc80733c3f457c96d6c48e3dfde80995ebad /cppu/source/uno/assign.hxx
parenta5451f4f9014ded27b8925911d5c79003259e533 (diff)
#88532# uno_assignData returns now false, when the source data pointer is null
Diffstat (limited to 'cppu/source/uno/assign.hxx')
-rw-r--r--cppu/source/uno/assign.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/uno/assign.hxx b/cppu/source/uno/assign.hxx
index dad60609b0c7..22b80db2175c 100644
--- a/cppu/source/uno/assign.hxx
+++ b/cppu/source/uno/assign.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: assign.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jsc $ $Date: 2001-03-30 13:41:39 $
+ * last change: $Author: jbu $ $Date: 2001-06-22 09:23:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -332,7 +332,7 @@ inline sal_Bool __assignData(
{
__destructData( pDest, pDestType, pDestTypeDescr, release );
__defaultConstructData( pDest, pDestType, pDestTypeDescr );
- return sal_True;
+ return sal_False;
}
while (typelib_TypeClass_ANY == pSourceType->eTypeClass)
{