summaryrefslogtreecommitdiff
path: root/sc/inc/refdata.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-09 14:14:03 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-09 14:16:25 -0400
commite44a139fdad49b286eb1a88cc668b52711680e6c (patch)
tree274f757a1046f3cff832ff3cdc8f201068daf0f4 /sc/inc/refdata.hxx
parent467cef426a84604263923d654213e14b4d29bbef (diff)
These header inline methods cause linkage error on Windows.
When the whole class / struct is marked SC_DLLPUBLIC. Change-Id: Id420a3ba083c8cdee71a99a282857d6abec55a31
Diffstat (limited to 'sc/inc/refdata.hxx')
-rw-r--r--sc/inc/refdata.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx
index c943c88ee573..00dbf9b8c3fa 100644
--- a/sc/inc/refdata.hxx
+++ b/sc/inc/refdata.hxx
@@ -81,7 +81,7 @@ struct SC_DLLPUBLIC ScSingleRefData
inline sal_Bool IsRowDeleted() const { return Flags.bRowDeleted; }
inline void SetTabDeleted( sal_Bool bVal ) { Flags.bTabDeleted = (bVal ? sal_True : false ); }
inline sal_Bool IsTabDeleted() const { return Flags.bTabDeleted; }
- inline sal_Bool IsDeleted() const { return IsColDeleted() || IsRowDeleted() || IsTabDeleted(); }
+ sal_Bool IsDeleted() const;
inline void SetFlag3D( sal_Bool bVal ) { Flags.bFlag3D = (bVal ? sal_True : false ); }
inline sal_Bool IsFlag3D() const { return Flags.bFlag3D; }