[Libreoffice-commits] core.git: Branch 'libreoffice-6-1-1' - sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Sun Sep 2 19:58:49 UTC 2018


 sw/source/ui/envelp/envfmt.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ed3445d862731b57be21a88d8e46b02d055d819b
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Aug 30 11:09:55 2018 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sun Sep 2 21:58:28 2018 +0200

    Resolves: tdf#119572 addressee/sender formatting swapped
    
    Change-Id: Icdb2ca0362711e87edcb952fb52117502d80d328
    Reviewed-on: https://gerrit.libreoffice.org/59795
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sw/source/ui/envelp/envfmt.cxx b/sw/source/ui/envelp/envfmt.cxx
index b46b795fdaac..ac02d23dc88a 100644
--- a/sw/source/ui/envelp/envfmt.cxx
+++ b/sw/source/ui/envelp/envfmt.cxx
@@ -225,12 +225,12 @@ IMPL_LINK( SwEnvFormatPage, ModifyHdl, weld::MetricSpinButton&, rEdit, void )
 
 IMPL_LINK(SwEnvFormatPage, AddrEditHdl, const OString&, rIdent, void)
 {
-    Edit(rIdent, true);
+    Edit(rIdent, false);
 }
 
 IMPL_LINK(SwEnvFormatPage, SendEditHdl, const OString&, rIdent, void)
 {
-    Edit(rIdent, false);
+    Edit(rIdent, true);
 }
 
 void SwEnvFormatPage::Edit(const OString& rIdent, bool bSender)


More information about the Libreoffice-commits mailing list