summaryrefslogtreecommitdiff
path: root/sc/inc/waitoff.hxx
diff options
context:
space:
mode:
authorSören Möller <soerenmoeller2001@gmail.com>2011-01-04 19:41:48 +0100
committerJan Holesovsky <kendy@meluzina.hloubetin>2011-01-05 11:47:17 +0100
commitec93cd4c5fd524fbed236f1ff0db1fce46b270e6 (patch)
tree6d1467abbe035e4f8545e91420796f9afa971a20 /sc/inc/waitoff.hxx
parent6849d5a41dde17a9c96934dfad3992fa740645c8 (diff)
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
Diffstat (limited to 'sc/inc/waitoff.hxx')
-rw-r--r--sc/inc/waitoff.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/waitoff.hxx b/sc/inc/waitoff.hxx
index 9ff3cfd8a2a6..0863b6d1b1be 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();