Related: tdf#153784 margin_bottom is a cnp nonsense, should be margin_end

Change-Id: Id14f63a8bfb64622e505903820b7f081c368389c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147924
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
(cherry picked from commit 3b279889daa9c37fe91663d16dd2d8c5938cc0d5)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147992
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 0c2f229..2d3b654 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -380,7 +380,7 @@ void SalInstanceWidget::set_margin_bottom(int nMargin) { m_xWidget->set_margin_b

void SalInstanceWidget::set_margin_start(int nMargin) { m_xWidget->set_margin_start(nMargin); }

void SalInstanceWidget::set_margin_end(int nMargin) { m_xWidget->set_margin_bottom(nMargin); }
void SalInstanceWidget::set_margin_end(int nMargin) { m_xWidget->set_margin_end(nMargin); }

int SalInstanceWidget::get_margin_top() const { return m_xWidget->get_margin_top(); }

@@ -388,7 +388,7 @@ int SalInstanceWidget::get_margin_bottom() const { return m_xWidget->get_margin_

int SalInstanceWidget::get_margin_start() const { return m_xWidget->get_margin_start(); }

int SalInstanceWidget::get_margin_end() const { return m_xWidget->get_margin_bottom(); }
int SalInstanceWidget::get_margin_end() const { return m_xWidget->get_margin_end(); }

void SalInstanceWidget::set_accessible_name(const OUString& rName)
{