summaryrefslogtreecommitdiff
path: root/autodoc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 16:19:21 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 16:19:21 +0000
commit4e4c9ff8475a7baf53379bbc03ce47987455564a (patch)
tree3777e475a2972d80c04566e80ac225de2f2b833e /autodoc
parentd6ad98a966b0691424d96524e574140872c48d9c (diff)
INTEGRATION: CWS adc18 (1.4.2); FILE MERGED
2007/10/19 10:37:32 np 1.4.2.2: #i81775# 2007/10/18 15:23:22 np 1.4.2.1: #i81775#
Diffstat (limited to 'autodoc')
-rw-r--r--autodoc/source/parser_i/tokens/stmstar2.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/autodoc/source/parser_i/tokens/stmstar2.cxx b/autodoc/source/parser_i/tokens/stmstar2.cxx
index b276fd26933b..d5ae6d03b7e3 100644
--- a/autodoc/source/parser_i/tokens/stmstar2.cxx
+++ b/autodoc/source/parser_i/tokens/stmstar2.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: stmstar2.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: vg $ $Date: 2007-09-18 14:27:18 $
+ * last change: $Author: hr $ $Date: 2007-11-02 17:19:21 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -51,7 +51,7 @@ StmArrayStatu2::StmArrayStatu2( intt i_nStatusSize,
nTokenId(UINT16(i_nTokenId)),
bIsADefault(in_bIsDefault)
{
- // KORR: Interface of StmArrayStatu2() has to be changed.
+ // KORR_FUTURE: Interface of StmArrayStatu2() has to be changed.
csv_assert(i_nTokenId < 64536);
if (in_aArrayModel != 0)
@@ -76,9 +76,9 @@ StmArrayStatu2::SetBranches( intt in_nStartBranchIx,
StmStatu2::Branch * in_aBranchValues,
intt in_nNrofValues )
{
- precond(in_nStartBranchIx >= 0);
- precond(in_aBranchValues != 0);
- precond( in_nNrofValues > 0
+ csv_assert(in_nStartBranchIx >= 0);
+ csv_assert(in_aBranchValues != 0);
+ csv_assert( in_nNrofValues > 0
AND in_nStartBranchIx + in_nNrofValues <= nNrOfBranches );
memcpy(&dpBranches[in_nStartBranchIx],in_aBranchValues,in_nNrofValues);