diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2013-11-13 11:14:06 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2013-11-13 11:31:00 +0100 |
commit | 22a7c9c0a6301ab497d91e0370164c3c9e3cf988 (patch) | |
tree | 907bc5a60c1eab2a9890a7644a1a9d5752a9f069 /sc/inc | |
parent | a4451e6e1ff41edfed8eff16b433ae8dab952945 (diff) |
ScRefreshTimer: export virtual methods and if possible mark SAL_OVERRIDE
Change-Id: I7a14121d1e50bcf87810316db9b51a548d55a47a
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/refreshtimer.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/refreshtimer.hxx b/sc/inc/refreshtimer.hxx index ff8fb12f225c..fc1eaecf8718 100644 --- a/sc/inc/refreshtimer.hxx +++ b/sc/inc/refreshtimer.hxx @@ -22,6 +22,7 @@ #include <vcl/timer.hxx> #include <osl/mutex.hxx> +#include <scdllapi.h> class ScRefreshTimerControl { @@ -55,8 +56,8 @@ public: sal_uLong GetRefreshDelay() const; void StopRefreshTimer(); - virtual void SetRefreshDelay( sal_uLong nSeconds ); - virtual void Timeout(); + SC_DLLPUBLIC virtual void SetRefreshDelay( sal_uLong nSeconds ); + SC_DLLPUBLIC virtual void Timeout() SAL_OVERRIDE; private: void Start(); |