vcl/source/app/salvtables.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit dbe36c47aa685ccdcfd05e5116348ace7b3bd68f
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Feb 27 16:32:37 2023 +0000
Commit:     Michael Stahl <michael.st...@allotropia.de>
CommitDate: Thu Mar 2 10:16:24 2023 +0000

    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 <caol...@redhat.com>
    Reviewed-by: Caolán McNamara <caol...@redhat.com>
    (cherry picked from commit 3b279889daa9c37fe91663d16dd2d8c5938cc0d5)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147992
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.st...@allotropia.de>

diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 0c2f229d5d92..2d3b6546d85a 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)
 {

Reply via email to