[Libreoffice-commits] .: svtools/inc

Thorsten Behrens thorsten at kemper.freedesktop.org
Fri Dec 3 12:20:12 PST 2010


 svtools/inc/svtools/filechangedchecker.hxx |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 9abd185f9226b65c45ea77b47ae4ff1a0e937a54
Author: Thorsten Behrens <tbehrens at novell.com>
Date:   Fri Dec 3 21:12:46 2010 +0100

    Export FileChangedChecker symbols
    
    forgot to annotate with public dll api

diff --git a/svtools/inc/svtools/filechangedchecker.hxx b/svtools/inc/svtools/filechangedchecker.hxx
index 0806b70..fe5fd68 100644
--- a/svtools/inc/svtools/filechangedchecker.hxx
+++ b/svtools/inc/svtools/filechangedchecker.hxx
@@ -24,6 +24,7 @@
 #ifndef SVTOOLS_INCLUDED_FILECHANGEDCHECKER_HXX
 #define SVTOOLS_INCLUDED_FILECHANGEDCHECKER_HXX
 
+#include "svtools/svtdllapi.h"
 #include <boost/function.hpp>
 #include <osl/file.hxx>
 #include <vcl/timer.hxx>
@@ -33,7 +34,7 @@
     Instances of this class setup a vcl timer to occasionally wake up
     check whether file modification time has changed.
  */
-class FileChangedChecker
+class SVT_DLLPUBLIC FileChangedChecker
 {
 private :
     Timer                    mTimer;
@@ -41,10 +42,10 @@ private :
     TimeValue                mLastModTime;
     ::boost::function0<void> mpCallback;
 
-    bool getCurrentModTime(TimeValue& o_rValue) const;
+    bool SVT_DLLPRIVATE getCurrentModTime(TimeValue& o_rValue) const;
+    DECL_LINK(TimerHandler, Timer *);
 
 public :
-    DECL_LINK(TimerHandler, Timer *);
     void resetTimer();
     bool hasFileChanged();
     FileChangedChecker(const rtl::OUString& rFilename, const ::boost::function0<void>& rCallback);


More information about the Libreoffice-commits mailing list