xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx | 2 ++ xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx | 2 ++ 2 files changed, 4 insertions(+)
New commits: commit cf2a7501fa1848fdccd9717f52f18d0f44db458b Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Sun Aug 7 15:17:22 2022 +0100 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Sun Aug 7 17:05:34 2022 +0200 Resolves: tdf#114790 add align and vertalign to currencyfield im/export Change-Id: Idef9a94aeefb295cd349ed0216d08bc8e2faf079 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137925 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caol...@redhat.com> diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx index 1ab4d3d21cce..01328f68050b 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx @@ -667,6 +667,8 @@ void ElementDescriptor::readCurrencyFieldModel( StyleBag * all_styles ) // collect elements readDefaults(); + readAlignAttr( "Align", XMLNS_DIALOGS_PREFIX ":align" ); + readVerticalAlignAttr( "VerticalAlign", XMLNS_DIALOGS_PREFIX ":valign" ); readBoolAttr( "Tabstop", XMLNS_DIALOGS_PREFIX ":tabstop" ); readBoolAttr( "ReadOnly", XMLNS_DIALOGS_PREFIX ":readonly" ); readBoolAttr( "HideInactiveSelection", XMLNS_DIALOGS_PREFIX ":hide-inactive-selection" ); diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx index e74e35ece9e2..4c7f9642f06e 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx @@ -745,6 +745,8 @@ void CurrencyFieldElement::endElement() } ctx.importDefaults( _nBasePosX, _nBasePosY, _xAttributes ); + ctx.importAlignProperty( "Align", "align", _xAttributes ); + ctx.importVerticalAlignProperty( "VerticalAlign", "valign", _xAttributes ); ctx.importBooleanProperty("Tabstop", "tabstop", _xAttributes ); ctx.importBooleanProperty( "ReadOnly", "readonly" , _xAttributes ); ctx.importBooleanProperty( "StrictFormat", "strict-format", _xAttributes );