[Libreoffice-commits] core.git: sc/inc
Jan-Marek Glogowski
glogow at fbihome.de
Fri Mar 6 11:08:56 PST 2015
sc/inc/refreshtimer.hxx | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit 9b4abcd1c45a646a1ac9120fe1c489ba6bb44e95
Author: Jan-Marek Glogowski <glogow at fbihome.de>
Date: Fri Mar 6 19:11:31 2015 +0100
Little build fix to Windows ScRefreshTimer
For whatever reason "objdump.exe -t xicontent.o" on Windows now
lists Start at 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
diff --git a/sc/inc/refreshtimer.hxx b/sc/inc/refreshtimer.hxx
index 20c57db..a87686b 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
More information about the Libreoffice-commits
mailing list