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

New commits:
commit cb1eed1cbb2b33d5d8244bfcc075de4cd61a01f1
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:36 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/+/147991
    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 259192c854cb..57ed0a317a44 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -473,7 +473,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(); }
 
@@ -481,7 +481,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