summaryrefslogtreecommitdiff
path: root/sc/inc/refdata.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-26 00:41:07 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-30 23:49:55 -0400
commite247262327d04ad9933f4af354050f4420c6e303 (patch)
treea05e55c4dd8f169c75ad4febd215492b0b83a7c5 /sc/inc/refdata.hxx
parentbb93f79249ac64bbd6d7a28d5bced7f02e1936ef (diff)
More on avoiding direct access to data members.
Change-Id: I5fdc0d248fe9c36418fd02a1e652e4e35a638c8a
Diffstat (limited to 'sc/inc/refdata.hxx')
-rw-r--r--sc/inc/refdata.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx
index 629e8ae40b93..337b66c204b8 100644
--- a/sc/inc/refdata.hxx
+++ b/sc/inc/refdata.hxx
@@ -67,10 +67,13 @@ struct SC_DLLPUBLIC ScSingleRefData
void SetAbsCol( SCCOL nVal );
void SetRelCol( SCCOL nVal );
+ void IncCol( SCCOL nInc );
void SetAbsRow( SCROW nVal );
void SetRelRow( SCROW nVal );
+ void IncRow( SCROW nInc );
void SetAbsTab( SCTAB nVal );
void SetRelTab( SCTAB nVal );
+ void IncTab( SCTAB nInc );
void SetColDeleted( bool bVal );
bool IsColDeleted() const;