From 1eef6d1e14712f9dbf925c8a04f60c4b32d6cbfe Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Tue, 15 Apr 2003 17:45:24 +0000 Subject: INTEGRATION: CWS adc5 (1.2.40); FILE MERGED 2003/04/15 11:08:15 np 1.2.40.1: #108718# --- autodoc/source/display/html/aryattrs.cxx | 10 +++------- autodoc/source/display/html/pm_index.cxx | 9 +++++++-- 2 files changed, 10 insertions(+), 9 deletions(-) (limited to 'autodoc/source/display/html') diff --git a/autodoc/source/display/html/aryattrs.cxx b/autodoc/source/display/html/aryattrs.cxx index 6c02675e226d..cdfbdd20e1f9 100644 --- a/autodoc/source/display/html/aryattrs.cxx +++ b/autodoc/source/display/html/aryattrs.cxx @@ -2,9 +2,9 @@ * * $RCSfile: aryattrs.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: np $ $Date: 2002-05-14 09:02:11 $ + * last change: $Author: hr $ $Date: 2003-04-15 18:45:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -109,11 +109,7 @@ Get_TypeKey( const ary::CodeEntity & i_rCe ) bool Ce_IsInternal( const ary::CodeEntity & i_rCe ) { - const ary::info::CodeInfo * - pInfo = dynamic_cast< const ary::info::CodeInfo* >( &i_rCe.Info() ); - return pInfo != 0 - ? pInfo->IsInternal() - : false; + return NOT i_rCe.IsVisible(); } const char * diff --git a/autodoc/source/display/html/pm_index.cxx b/autodoc/source/display/html/pm_index.cxx index 7895033a819b..3579ea1de16e 100644 --- a/autodoc/source/display/html/pm_index.cxx +++ b/autodoc/source/display/html/pm_index.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pm_index.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: np $ $Date: 2002-05-14 09:02:12 $ + * last change: $Author: hr $ $Date: 2003-04-15 18:45:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -75,6 +75,8 @@ #include #include #include +#include +#include "aryattrs.hxx" #include "hd_chlst.hxx" #include "hd_docu.hxx" #include "html_kit.hxx" @@ -310,6 +312,9 @@ PageMaker_Index::Write_CeIndexEntry( const ary::CodeEntity & i_rCe, const char * i_sType, const char * i_sOwnerType ) { + if ( Ce_IsInternal(i_rCe) ) + return; + static csv::StreamStr aQualification(500); const ary::CodeEntity & rOwner = Env().Gate().Ref_Ce(i_rCe.Owner()); -- cgit