summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/viewdata.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-12-16 15:03:25 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-12-16 15:12:15 -0500
commit087c2fddce7b38d67c1168f9d28134819dac57b1 (patch)
tree8ecd5de25c85044d51fbe98e92038d8a096aa54e /sc/source/ui/view/viewdata.cxx
parent735bd120c9ee2d9bb3514907936c27efb75d7282 (diff)
Make this non-inline (for easier debugging).
Change-Id: I2b7a84c56b8130c6566eb971ba6ba0c3ee487c86
Diffstat (limited to 'sc/source/ui/view/viewdata.cxx')
-rw-r--r--sc/source/ui/view/viewdata.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index 1b6daf0a5d6a..9f74c84745c6 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -3018,6 +3018,15 @@ ScAddress ScViewData::GetCurPos() const
return ScAddress( GetCurX(), GetCurY(), GetTabNo() );
}
+void ScViewData::SetRefStart( SCCOL nNewX, SCROW nNewY, SCTAB nNewZ )
+{
+ nRefStartX = nNewX; nRefStartY = nNewY; nRefStartZ = nNewZ;
+}
+
+void ScViewData::SetRefEnd( SCCOL nNewX, SCROW nNewY, SCTAB nNewZ )
+{
+ nRefEndX = nNewX; nRefEndY = nNewY; nRefEndZ = nNewZ;
+}
void ScViewData::AddPixelsWhile( long & rScrY, long nEndPixels, SCROW & rPosY,
SCROW nEndRow, double nPPTY, const ScDocument * pDoc, SCTAB nTabNo )