summaryrefslogtreecommitdiff
path: root/sc/inc/brdcst.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/brdcst.hxx')
-rw-r--r--sc/inc/brdcst.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sc/inc/brdcst.hxx b/sc/inc/brdcst.hxx
index a050a935b31c..aba3079ed3f7 100644
--- a/sc/inc/brdcst.hxx
+++ b/sc/inc/brdcst.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -35,24 +35,24 @@
#include <svl/smplhint.hxx>
class ScBaseCell;
-#define SC_HINT_DYING SFX_HINT_DYING
-#define SC_HINT_DATACHANGED SFX_HINT_DATACHANGED
-#define SC_HINT_TABLEOPDIRTY SFX_HINT_USER00
+#define SC_HINT_DYING SFX_HINT_DYING
+#define SC_HINT_DATACHANGED SFX_HINT_DATACHANGED
+#define SC_HINT_TABLEOPDIRTY SFX_HINT_USER00
#define SC_HINT_CALCALL SFX_HINT_USER01
class ScHint : public SfxSimpleHint
{
private:
- ScAddress aAddress;
+ ScAddress aAddress;
ScBaseCell* pCell;
public:
TYPEINFO();
ScHint( ULONG n, const ScAddress& a, ScBaseCell* p )
: SfxSimpleHint( n ), aAddress( a ), pCell( p ) {}
- ScBaseCell* GetCell() const { return pCell; }
+ ScBaseCell* GetCell() const { return pCell; }
void SetCell( ScBaseCell* p ) { pCell = p; }
- const ScAddress& GetAddress() const { return aAddress; }
+ const ScAddress& GetAddress() const { return aAddress; }
ScAddress& GetAddress() { return aAddress; }
void SetAddress( const ScAddress& rAdr ) { aAddress = rAdr; }
};
@@ -60,11 +60,11 @@ public:
class ScAreaChangedHint : public SfxHint
{
private:
- ScRange aNewRange;
+ ScRange aNewRange;
public:
TYPEINFO();
ScAreaChangedHint(const ScRange& rRange) : aNewRange(rRange) {}
- const ScRange& GetRange() const { return aNewRange; }
+ const ScRange& GetRange() const { return aNewRange; }
};