diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-06-19 13:55:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-19 13:57:12 +0100 |
commit | cb1ec05a72d54d55c8a98778c56ee01197cf45f4 (patch) | |
tree | 4ce7efe476b804131198a754260032186ddf903a /sw | |
parent | a1936e4183240981af0bf616207994e3a2f7929e (diff) |
Resolves: fdo#65931 why are we futzing with leading on the preview anyway
Change-Id: I0eff88f165a737dfd9a2f348f04b17b6a6212e6f
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/chrdlg/drpcps.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sw/source/ui/chrdlg/drpcps.cxx b/sw/source/ui/chrdlg/drpcps.cxx index 1a11874d33f2..afb51f19b7ec 100644 --- a/sw/source/ui/chrdlg/drpcps.cxx +++ b/sw/source/ui/chrdlg/drpcps.cxx @@ -71,7 +71,6 @@ class SwDropCapsPict : public Control long mnLineH; long mnTextH; sal_uInt16 mnDistance; - sal_Int32 mnLeading; Printer* mpPrinter; bool mbDelPrinter; /// The _ScriptInfo structure holds information on where we change from one @@ -243,7 +242,6 @@ void SwDropCapsPict::UpdatePaintSettings( void ) // gray lines mnTotLineH = (GetOutputSizePixel().Height() - 2 * BORDER) / LINES; mnLineH = mnTotLineH - 2; - mnLeading = GetFontMetric().GetIntLeading(); Font aFont; { @@ -302,11 +300,11 @@ void SwDropCapsPict::UpdatePaintSettings( void ) maCJKFont.SetFillColor(GetSettings().GetStyleSettings().GetWindowColor()); maCTLFont.SetFillColor(GetSettings().GetStyleSettings().GetWindowColor()); - maCJKFont.SetSize(Size(0, maCJKFont.GetSize().Height() + mnLeading)); - maCTLFont.SetSize(Size(0, maCTLFont.GetSize().Height() + mnLeading)); + maCJKFont.SetSize(Size(0, maCJKFont.GetSize().Height())); + maCTLFont.SetSize(Size(0, maCTLFont.GetSize().Height())); SetFont(aFont); - aFont.SetSize(Size(0, aFont.GetSize().Height() + mnLeading)); + aFont.SetSize(Size(0, aFont.GetSize().Height())); SetFont(aFont); maFont = aFont; @@ -356,7 +354,7 @@ void SwDropCapsPict::Paint(const Rectangle &/*rRect*/) DrawRect( Rectangle( Point( BORDER, nY0 ), aTextSize ) ); // draw Text - DrawPrev( Point( BORDER, nY0 - mnLeading ) ); + DrawPrev( Point( BORDER, nY0 ) ); } SetClipRegion(); |