MWS_SRX644: migrate branch mws_srx644 -> HEAD

This commit is contained in:
Jens-Heiner Rechtien
2003-03-18 13:11:43 +00:00
parent 179fc2e2e2
commit 72ef55fe37
32 changed files with 723 additions and 141 deletions

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: pm_class.cxx,v $
*
* $Revision: 1.1.1.1 $
* $Revision: 1.2 $
*
* last change: $Author: np $ $Date: 2002-03-08 14:45:24 $
* last change: $Author: hr $ $Date: 2003-03-18 14:11:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -416,8 +416,8 @@ const char *
PageMaker_Class::ChildListLabel( const char * i_sLabel, E_MemberProtection i_eMpr )
{
static char sResult[100];
strcpy( sResult, C_sMprPrefixes[i_eMpr] );
strcat( sResult, i_sLabel );
strcpy( sResult, C_sMprPrefixes[i_eMpr] ); // SAFE STRCPY (#100211# - checked)
strcat( sResult, i_sLabel ); // SAFE STRCAT (#100211# - checked)
return sResult;
}