diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 13:56:28 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-08 13:56:28 +0000 |
commit | 38ff23742e767575d1312c0a1a26266b94603b0c (patch) | |
tree | 3a45268ae2de3cebffa1a873bdb3ee0d4672b108 | |
parent | 68c347413054df64e0700f3e92a46f0ddfb96790 (diff) |
INTEGRATION: CWS oasisbf5 (1.37.82); FILE MERGED
2005/02/18 11:31:02 mib 1.37.82.1: #i42834#: xforms:submission renamed to form:xforms-submission
-rw-r--r-- | xmloff/source/forms/elementexport.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx index 16730e6690fe..56f17ef2c27c 100644 --- a/xmloff/source/forms/elementexport.cxx +++ b/xmloff/source/forms/elementexport.cxx @@ -2,9 +2,9 @@ * * $RCSfile: elementexport.cxx,v $ * - * $Revision: 1.37 $ + * $Revision: 1.38 $ * - * last change: $Author: rt $ $Date: 2004-11-26 13:01:22 $ + * last change: $Author: vg $ $Date: 2005-03-08 14:56:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1819,19 +1819,19 @@ namespace xmloff void OControlExport::exportXFormsBindAttributes() { rtl::OUString sBindName = getXFormsBindName( m_xProps ); - AddAttribute( XML_NAMESPACE_XFORMS, "bind", sBindName ); + AddAttribute( XML_NAMESPACE_XFORMS, XML_BIND, sBindName ); } //--------------------------------------------------------------------- void OControlExport::exportXFormsListAttributes() { rtl::OUString sBindName = getXFormsListBindName( m_xProps ); - AddAttribute( XML_NAMESPACE_FORM, "xforms-list-source", sBindName ); + AddAttribute( XML_NAMESPACE_FORM, XML_XFORMS_LIST_SOURCE, sBindName ); } //--------------------------------------------------------------------- void OControlExport::exportXFormsSubmissionAttributes() { rtl::OUString sSubmission = getXFormsSubmissionName( m_xProps ); - AddAttribute( XML_NAMESPACE_XFORMS, "submission", sSubmission ); + AddAttribute( XML_NAMESPACE_FORM, XML_XFORMS_SUBMISSION, sSubmission ); } //--------------------------------------------------------------------- void OControlExport::exportCellListSourceRange( ) |