summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2003-09-04 09:52:55 +0000
committerOliver Bolte <obo@openoffice.org>2003-09-04 09:52:55 +0000
commit5d6aef92fe7277017688990e1f052bbbd75dcac4 (patch)
treef404f0f43ded506c11d1af8e2796edc62d2ecf41 /cppu
parent5d4586c02b4c75b44865d53c0b304114670dedef (diff)
INTEGRATION: CWS cliuno01 (1.9.2); FILE MERGED
2003/07/24 15:19:03 dbo 1.9.2.1: - sequence reallocation fix - more code cleanup - test code
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/constr.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/source/uno/constr.hxx b/cppu/source/uno/constr.hxx
index 0419d63bad43..ece5ddf56c1c 100644
--- a/cppu/source/uno/constr.hxx
+++ b/cppu/source/uno/constr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: constr.hxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: vg $ $Date: 2003-03-20 12:28:39 $
+ * last change: $Author: obo $ $Date: 2003-09-04 10:52:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -182,7 +182,7 @@ inline void _defaultConstructArray(
for (i=0; i < nTotalElements; i++)
{
uno_Sequence** ppElement = (uno_Sequence **)pMem + i;
- *ppElement = _getEmptySequence();
+ *ppElement = createEmptySequence();
}
break;
}
@@ -288,7 +288,7 @@ inline void _defaultConstructData(
}
break;
case typelib_TypeClass_SEQUENCE:
- *(uno_Sequence **)pMem = _getEmptySequence();
+ *(uno_Sequence **)pMem = createEmptySequence();
break;
case typelib_TypeClass_INTERFACE:
*(void **)pMem = 0; // either cpp or c-uno interface