diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-08-30 11:09:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-08-30 14:37:59 +0200 |
commit | 1fd55c3a58ff171a39586fb0e5dd140e82718aed (patch) | |
tree | 6a1b64c1070baddd1eddfa37e2bd1599ab598aa1 | |
parent | 634527cf866adf5cc7fb501b09e36bb3f7be89e5 (diff) |
Resolves: tdf#119572 addressee/sender formatting swapped
Change-Id: Icdb2ca0362711e87edcb952fb52117502d80d328
Reviewed-on: https://gerrit.libreoffice.org/59794
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Tested-by: Jenkins
-rw-r--r-- | sw/source/ui/envelp/envfmt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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) |