summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2015-03-06 19:11:31 +0100
committerJan-Marek Glogowski <glogow@fbihome.de>2015-03-06 20:00:34 +0100
commit9b4abcd1c45a646a1ac9120fe1c489ba6bb44e95 (patch)
tree049271c64e942242bee5ffb325497a6a8127780a /sc/inc
parentacaafc03e623ac25d4408605f34d50618926c5d0 (diff)
Little build fix to Windows ScRefreshTimer
For whatever reason "objdump.exe -t xicontent.o" on Windows now lists Start@ScRefreshTimer@@EAEXXZ (probably because it's now a virtual function). Also the reference to SetRefreshDelay vanished after dropping the virtual keyword from SetRefreshDelay. The linux object file doesn't even refer to a ScRefreshTimer function. Start() can stay private, as the timer is handled via SetRefreshDelay. Probably Stop() should also become private in this case. This also reverts 2c0189a8a3aeb3668bf6de1ea1958ba475b80a38 Change-Id: I2a6900cd6bd76c4fec9f30131152b60a5bd2c2e7
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/refreshtimer.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/inc/refreshtimer.hxx b/sc/inc/refreshtimer.hxx
index 20c57dbc61ad..a87686bfdc6f 100644
--- a/sc/inc/refreshtimer.hxx
+++ b/sc/inc/refreshtimer.hxx
@@ -55,9 +55,11 @@ public:
sal_uLong GetRefreshDelay() const;
void StopRefreshTimer();
- SC_DLLPUBLIC virtual void SetRefreshDelay( sal_uLong nSeconds );
+ void SetRefreshDelay( sal_uLong nSeconds );
SC_DLLPUBLIC virtual void Invoke() SAL_OVERRIDE;
- virtual void Start() SAL_OVERRIDE;
+
+private:
+ SC_DLLPUBLIC virtual void Start() SAL_OVERRIDE;
};
#endif // INCLUDED_SC_INC_REFRESHTIMER_HXX