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/app/swmodul1.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/app/swmodul1.cxx')
-rw-r--r-- | sw/source/ui/app/swmodul1.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/app/swmodul1.cxx b/sw/source/ui/app/swmodul1.cxx index 7815061c89f4..3c1388fba18e 100644 --- a/sw/source/ui/app/swmodul1.cxx +++ b/sw/source/ui/app/swmodul1.cxx @@ -293,13 +293,13 @@ void SwModule::ApplyUserCharUnit(sal_Bool bApplyChar, sal_Bool bWeb) if(bWeb) { if(!pWebUsrPref) - GetUsrPref(sal_True); + GetUsrPref(sal_True); pPref = pWebUsrPref; } else { if(!pUsrPref) - GetUsrPref(sal_False); + GetUsrPref(sal_False); pPref = pUsrPref; } sal_Bool bOldApplyCharUnit = pPref->IsApplyCharUnit(); |