[Libreoffice-commits] .: sc/inc

Jan Holesovsky kendy at kemper.freedesktop.org
Wed Jan 5 02:47:31 PST 2011


 sc/inc/waitoff.hxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 896d4f71589c888acf3e1d42baa61945e08b691b
Author: Sören Möller <soerenmoeller2001 at gmail.com>
Date:   Tue Jan 4 19:41:48 2011 +0100

    Removed dependencies on tools/solar.h in waitoff.h
    
    Replaced datatypes from tools/solar.h in waitoff.h by corresponding types from sal/types.h

diff --git a/sc/inc/waitoff.hxx b/sc/inc/waitoff.hxx
index d58f1cd..5090399 100644
--- a/sc/inc/waitoff.hxx
+++ b/sc/inc/waitoff.hxx
@@ -29,15 +29,15 @@
 #ifndef SC_WAITOFF_HXX
 #define SC_WAITOFF_HXX
 
-#include <tools/solar.h>
+#include <sal/types.h>
 
 class Window;
 
 class ScWaitCursorOff
 {
 private:
-    Window*				pWin;
-    ULONG				nWaiters;
+    Window*                 pWin;
+    sal_uInt32              nWaiters;
 public:
                         ScWaitCursorOff( Window* pWin );
                         ~ScWaitCursorOff();


More information about the Libreoffice-commits mailing list