summaryrefslogtreecommitdiff
path: root/sc/inc/refdata.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-22 11:56:20 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-24 23:29:36 -0400
commitfce2abf00547b2d0d48b52703d91d9d41b2a675b (patch)
treee18fd523e11629406913bffdb74bdbc71df24974 /sc/inc/refdata.hxx
parente61d5814f05c01a0522424d27e92418e8fe98e70 (diff)
Handle reference adjustment in response to sheet deletion.
Change-Id: Ia6039d8a38a73d8d461743f128f01c347a2c51ad
Diffstat (limited to 'sc/inc/refdata.hxx')
-rw-r--r--sc/inc/refdata.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx
index 77d03e6d3d40..92bf5b9190fa 100644
--- a/sc/inc/refdata.hxx
+++ b/sc/inc/refdata.hxx
@@ -64,12 +64,12 @@ struct SC_DLLPUBLIC ScSingleRefData
inline void SetTabRel( bool bVal ) { Flags.bTabRel = (bVal ? true : false ); }
inline bool IsTabRel() const { return Flags.bTabRel; }
- inline void SetColDeleted( bool bVal ) { Flags.bColDeleted = (bVal ? true : false ); }
- inline bool IsColDeleted() const { return Flags.bColDeleted; }
- inline void SetRowDeleted( bool bVal ) { Flags.bRowDeleted = (bVal ? true : false ); }
- inline bool IsRowDeleted() const { return Flags.bRowDeleted; }
- inline void SetTabDeleted( bool bVal ) { Flags.bTabDeleted = (bVal ? true : false ); }
- inline bool IsTabDeleted() const { return Flags.bTabDeleted; }
+ void SetColDeleted( bool bVal );
+ bool IsColDeleted() const;
+ void SetRowDeleted( bool bVal );
+ bool IsRowDeleted() const;
+ void SetTabDeleted( bool bVal );
+ bool IsTabDeleted() const;
bool IsDeleted() const;
inline void SetFlag3D( bool bVal ) { Flags.bFlag3D = (bVal ? true : false ); }