diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-20 14:08:36 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-20 14:09:49 +0100 |
commit | 5f75082ef17c713a9e41a05d222fe9dda9c3136e (patch) | |
tree | 217ac3e24691380d3f1932eaffdc8ce6f9dcdeb2 /sw/source/ui/fldui/flddinf.cxx | |
parent | 53f23ca68dda1011f97bb28d672c7198e9e12c90 (diff) |
incorrect if/for body alignment
I checked history of all the questionable ones, and the itrform2.cxx
one was a genuine error.
Change-Id: Ibfcd8732ba4a66a8c038940ae10f8b27fee466c9
Diffstat (limited to 'sw/source/ui/fldui/flddinf.cxx')
-rw-r--r-- | sw/source/ui/fldui/flddinf.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sw/source/ui/fldui/flddinf.cxx b/sw/source/ui/fldui/flddinf.cxx index 6a6f35b1ebcb..34adbd421621 100644 --- a/sw/source/ui/fldui/flddinf.cxx +++ b/sw/source/ui/fldui/flddinf.cxx @@ -215,9 +215,7 @@ IMPL_LINK_NOARG(SwFldDokInfPage, TypeHdl) pSelEntry = aTypeTLB.GetEntry(0); aTypeTLB.Select(pSelEntry); } - else - - if (pOldEntry != pSelEntry) + else if (pOldEntry != pSelEntry) FillSelectionLB((sal_uInt16)(sal_uLong)pSelEntry->GetUserData()); SubTypeHdl(); |