summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-12 09:46:46 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-12 09:46:46 +0200
commit5a2cfa677356f77cda15365dd9107ce503e11dd4 (patch)
tree8c6c2dab7dbde2ee766e2869cbeb1062d0d88d1a /basctl
parent3ce934bfc910af626baa985fa37f9a7ee08ad473 (diff)
Abbreviate Rectangle as Rect, not Rec
Change-Id: If38a5d23150bcd19a6eb6024c2ef1eea826898f5
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx6
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);