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 15:16:17 +0200 |
commit | 893f26ce157e47a1f4b3499c5f0d3db9e923e1be (patch) | |
tree | b27b82f73f9f8de4f9f62f97756f1b5ae2b528d8 | |
parent | 339795d6bd064f57ef33c7cbd5e90433c179e72e (diff) |
Resolves: tdf#119572 addressee/sender formatting swapped
Change-Id: Icdb2ca0362711e87edcb952fb52117502d80d328
Reviewed-on: https://gerrit.libreoffice.org/59793
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-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 f44b0c00f108..40e8cfaf4967 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) |