summaryrefslogtreecommitdiff
path: root/autodoc/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-04-15 17:45:24 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-04-15 17:45:24 +0000
commit1eef6d1e14712f9dbf925c8a04f60c4b32d6cbfe (patch)
tree51b9b9bd5623b7f436dfa5c7b0ab1d0b3a38fab2 /autodoc/source
parent8974efdd6f4eb7e4ce253658db04e710a796007c (diff)
INTEGRATION: CWS adc5 (1.2.40); FILE MERGED
2003/04/15 11:08:15 np 1.2.40.1: #108718#
Diffstat (limited to 'autodoc/source')
-rw-r--r--autodoc/source/display/html/aryattrs.cxx10
-rw-r--r--autodoc/source/display/html/pm_index.cxx9
2 files changed, 10 insertions, 9 deletions
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 <ary/cpp/c_namesp.hxx>
#include <ary/cpp/c_vari.hxx>
#include <ary/cpp/c_enuval.hxx>
+#include <ary/info/codeinfo.hxx>
+#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());