diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-12 09:46:46 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-12 09:46:46 +0200 |
commit | 5a2cfa677356f77cda15365dd9107ce503e11dd4 (patch) | |
tree | 8c6c2dab7dbde2ee766e2869cbeb1062d0d88d1a /basctl/source | |
parent | 3ce934bfc910af626baa985fa37f9a7ee08ad473 (diff) |
Abbreviate Rectangle as Rect, not Rec
Change-Id: If38a5d23150bcd19a6eb6024c2ef1eea826898f5
Diffstat (limited to 'basctl/source')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index ca6318fc0a23..e0fa872528bf 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -918,10 +918,10 @@ void EditorWindow::ParagraphInsertedDeleted( sal_uLong nPara, bool bInserted ) long nLineHeight = GetTextHeight(); Size aSz = rModulWindow.GetBreakPointWindow().GetOutputSize(); - Rectangle aInvRec( Point( 0, 0 ), aSz ); + Rectangle aInvRect( Point( 0, 0 ), aSz ); long nY = nPara*nLineHeight - rModulWindow.GetBreakPointWindow().GetCurYOffset(); - aInvRec.Top() = nY; - rModulWindow.GetBreakPointWindow().Invalidate( aInvRec ); + aInvRect.Top() = nY; + rModulWindow.GetBreakPointWindow().Invalidate( aInvRect ); Size aLnSz(rModulWindow.GetLineNumberWindow().GetWidth(), GetOutputSizePixel().Height() - 2 * DWBORDER); |