summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-01-29 14:12:14 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-01-29 14:12:14 +0000
commit4dd71ec7501828eaa72d86a2ae4b6fa031bceacd (patch)
treeaa06ee63b3ee479d50a083ec98592e91351e0be2 /xmlscript
parent2c6ca8b7a1e20af613132175a05576174dc28abf (diff)
INTEGRATION: CWS fwk80_SRC680 (1.27.12); FILE MERGED
2008/01/11 09:36:47 tkr 1.27.12.1: #i83756# provide xml im- and export for FixedHyperlink
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xmldlg_imexp/imp_share.hxx24
1 files changed, 22 insertions, 2 deletions
diff --git a/xmlscript/source/xmldlg_imexp/imp_share.hxx b/xmlscript/source/xmldlg_imexp/imp_share.hxx
index 46c6d2e88626..e5e9d109916b 100644
--- a/xmlscript/source/xmldlg_imexp/imp_share.hxx
+++ b/xmlscript/source/xmldlg_imexp/imp_share.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: imp_share.hxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: rt $ $Date: 2007-07-03 12:57:04 $
+ * last change: $Author: rt $ $Date: 2008-01-29 15:12:14 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -718,7 +718,27 @@ public:
: ControlElement( rLocalName, xAttributes, pParent, pImport )
{}
};
+//==============================================================================
+class FixedHyperLinkElement
+ : public ControlElement
+{
+public:
+ virtual css::uno::Reference< css::xml::input::XElement >
+ SAL_CALL startChildElement(
+ sal_Int32 nUid, ::rtl::OUString const & rLocalName,
+ css::uno::Reference<css::xml::input::XAttributes> const & xAttributes )
+ throw (css::xml::sax::SAXException, css::uno::RuntimeException);
+ virtual void SAL_CALL endElement()
+ throw (css::xml::sax::SAXException, css::uno::RuntimeException);
+ inline FixedHyperLinkElement(
+ ::rtl::OUString const & rLocalName,
+ css::uno::Reference< css::xml::input::XAttributes > const & xAttributes,
+ ElementBase * pParent, DialogImport * pImport )
+ SAL_THROW( () )
+ : ControlElement( rLocalName, xAttributes, pParent, pImport )
+ {}
+};
//==============================================================================
class TextFieldElement
: public ControlElement