summaryrefslogtreecommitdiff
path: root/autodoc/source/display/toolkit/hf_funcdecl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/display/toolkit/hf_funcdecl.cxx')
-rw-r--r--autodoc/source/display/toolkit/hf_funcdecl.cxx47
1 files changed, 0 insertions, 47 deletions
diff --git a/autodoc/source/display/toolkit/hf_funcdecl.cxx b/autodoc/source/display/toolkit/hf_funcdecl.cxx
index ee260add569a..4f0c652b1934 100644
--- a/autodoc/source/display/toolkit/hf_funcdecl.cxx
+++ b/autodoc/source/display/toolkit/hf_funcdecl.cxx
@@ -156,51 +156,4 @@ HF_FunctionDeclaration::ParameterLine()
return *pParameterLine;
}
-
-#if 0 // old
-HF_FunctionDeclaration::HF_FunctionDeclaration( Xml::Element & o_rParent )
- : HtmlMaker(o_rParent),
- pFront(0),
- pTypes(0),
- pNames(0)
-{
- Xml::Element &
- rRow = CurOut()
- >> *new Html::Table
- << new Xml::AnAttribute("border","0")
- >> *new Html::TableRow;
- pFront = &(rRow >> *new Html::TableCell << new Html::VAlignAttr(C_sValignTop));
- pTypes = &(rRow >> *new Html::TableCell << new Html::VAlignAttr(C_sValignTop));
- pNames = &(rRow >> *new Html::TableCell << new Html::VAlignAttr(C_sValignTop));
-}
-
-HF_FunctionDeclaration::~HF_FunctionDeclaration()
-{
-}
-
-Xml::Element &
-HF_FunctionDeclaration::Add_ReturnLine()
-{
- (*pTypes) << new Xml::XmlCode("&nbsp;<br>\n");
- (*pNames) << new Xml::XmlCode("&nbsp;<br>\n");
- return *pFront;
-}
-
-Xml::Element &
-HF_FunctionDeclaration::Add_RaisesLine( const char * i_sRaisesText,
- bool i_bSuppressExtraLine )
-{
- if (NOT i_bSuppressExtraLine)
- {
- (*pTypes) << new Xml::XmlCode("&nbsp;<br>");
- (*pNames) << new Xml::XmlCode("&nbsp;<br>\n");
- }
- (*pTypes)
- << new Xml::XmlCode("<p class=\"raise\">")
- << i_sRaisesText
- << new Xml::XmlCode("( </p>\n");
- return *pNames;
-}
-#endif // 0 old
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */