diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 14:12:43 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-01-29 14:12:43 +0000 |
commit | ed41ac991ec69d0f01cace08021744bbf0135acb (patch) | |
tree | a700c6433cfd9fec5005dad7eb6e87ad7c76697f /xmlscript | |
parent | 8f358bb76078fcfba85835090f311309e9f51a1d (diff) |
INTEGRATION: CWS fwk80_SRC680 (1.38.12); FILE MERGED
2008/01/11 09:36:47 tkr 1.38.12.1: #i83756# provide xml im- and export for FixedHyperlink
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_export.cxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx index 0dc424da84c4..c06ac6eb0e4c 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xmldlg_export.cxx,v $ * - * $Revision: 1.38 $ + * $Revision: 1.39 $ * - * last change: $Author: rt $ $Date: 2007-07-03 12:57:34 $ + * last change: $Author: rt $ $Date: 2008-01-29 15:12:43 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1425,6 +1425,15 @@ void SAL_CALL exportDialogModel( xElem = static_cast< xml::sax::XAttributeList * >( pElem ); pElem->readEditModel( &all_styles ); } + // FixedHyperLink + else if (xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoControlFixedHyperlinkModel") ) ) ) + { + pElem = new ElementDescriptor( + xProps, xPropState, + OUString( RTL_CONSTASCII_USTRINGPARAM(XMLNS_DIALOGS_PREFIX ":linklabel") ) ); + xElem = static_cast< xml::sax::XAttributeList * >( pElem ); + pElem->readFixedHyperLinkModel( &all_styles ); + } else if (xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.awt.UnoControlImageControlModel") ) ) ) { pElem = new ElementDescriptor( |