summaryrefslogtreecommitdiff
path: root/autodoc/source/display/idl/hi_env.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-01-27 10:19:39 +0000
committerOliver Bolte <obo@openoffice.org>2005-01-27 10:19:39 +0000
commit58f6be5c497e8c7654ae0ff9c5d409b2700e67ec (patch)
tree8bde0fee03f275e30d32603d73bc67f1724c7013 /autodoc/source/display/idl/hi_env.cxx
parent9c540db85d96bd290fe8fb9b80cb96bd73742624 (diff)
INTEGRATION: CWS adc10 (1.3.8); FILE MERGED
2005/01/12 13:14:26 np 1.3.8.1: #i31025# Convenient error log file.
Diffstat (limited to 'autodoc/source/display/idl/hi_env.cxx')
-rw-r--r--autodoc/source/display/idl/hi_env.cxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/autodoc/source/display/idl/hi_env.cxx b/autodoc/source/display/idl/hi_env.cxx
index 9c19b9811ae5..9110597f870a 100644
--- a/autodoc/source/display/idl/hi_env.cxx
+++ b/autodoc/source/display/idl/hi_env.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: hi_env.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2004-07-12 15:30:45 $
+ * last change: $Author: obo $ $Date: 2005-01-27 11:19:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -188,6 +188,12 @@ HtmlEnvironment_Idl::Link2Manual( const String & i_link ) const
String
HtmlEnvironment_Idl::CurPageCe_AsText() const
{
+ return CurPageCe_AsFile(".html");
+}
+
+String
+HtmlEnvironment_Idl::CurPageCe_AsFile(const char * i_sEnding) const
+{
if (pCurPageCe == 0)
return String::Null_();
@@ -199,7 +205,6 @@ HtmlEnvironment_Idl::CurPageCe_AsText() const
if (aModule_.size() > 0)
slCe().operator_join(aModule_.begin(), aModule_.end(), "/");
if (NOT sCe.empty())
- slCe() << "/" << sCe << ".html";
+ slCe() << "/" << sCe << i_sEnding;
return String(slCe().c_str());
}
-