diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-01-28 19:59:35 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-01-28 20:02:39 +0200 |
commit | c65e51d70747e4664c37a8226dbe2b12399d7146 (patch) | |
tree | dd4590f48f87a6b2be75df8c9a05f8b19cc941f4 /sc/inc/document.hxx | |
parent | 2d292a95c33a7ff6c0d2cb15c7451f72c7f9b124 (diff) |
Make GetAutoCalc() and SetAutoCalc() public
Change-Id: I25d681b4b1e35af49b6631b2c3de2ccc296b9b42
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r-- | sc/inc/document.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index dd5175ae35c3..d3fe564ddc19 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -1060,8 +1060,8 @@ public: void ClearLookupCaches(); // calculate automatically - void SetAutoCalc( bool bNewAutoCalc ); - bool GetAutoCalc() const { return bAutoCalc; } + SC_DLLPUBLIC void SetAutoCalc( bool bNewAutoCalc ); + SC_DLLPUBLIC bool GetAutoCalc() const { return bAutoCalc; } // calculate automatically in/from/for ScDocShell disabled void SetAutoCalcShellDisabled( bool bNew ) { bAutoCalcShellDisabled = bNew; } bool IsAutoCalcShellDisabled() const { return bAutoCalcShellDisabled; } |