diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-22 22:57:02 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-27 16:51:29 +0100 |
commit | e7d920da4465fd8de8b8a9f87a3589054eac73de (patch) | |
tree | 654fa5c101b1ec676109f3919f304be9590fbe5d /sc/inc | |
parent | 7cd9eba81dc3be56def062e3f22d290636a11b1c (diff) |
sal_uLong to sal_uInt32, ScHint related
Change-Id: I84402bf4b8d69ae350f6449cf4d1fd7c5c325f3c
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/brdcst.hxx | 2 | ||||
-rw-r--r-- | sc/inc/column.hxx | 2 | ||||
-rw-r--r-- | sc/inc/document.hxx | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/brdcst.hxx b/sc/inc/brdcst.hxx index 5dfdb8f46837..606541b7e189 100644 --- a/sc/inc/brdcst.hxx +++ b/sc/inc/brdcst.hxx @@ -31,7 +31,7 @@ class ScHint : public SfxSimpleHint ScAddress aAddress; public: - ScHint( sal_uLong n, const ScAddress& a ); + ScHint( sal_uInt32 n, const ScAddress& a ); const ScAddress& GetAddress() const { return aAddress; } ScAddress& GetAddress() { return aAddress; } }; diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 69cb0366fccb..5c0615cd8ad5 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -578,7 +578,7 @@ public: bool HasBroadcaster() const; void Broadcast( SCROW nRow ); - void BroadcastCells( const std::vector<SCROW>& rRows, sal_uLong nHint ); + void BroadcastCells( const std::vector<SCROW>& rRows, sal_uInt32 nHint ); // cell notes ScPostIt* GetCellNote( SCROW nRow ); diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 4720d340c9e2..e8297bb4d35c 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -1909,7 +1909,7 @@ public: */ void Broadcast( const ScHint& rHint ); - void BroadcastCells( const ScRange& rRange, sal_uLong nHint, bool bBroadcastSingleBroadcasters = true ); + void BroadcastCells( const ScRange& rRange, sal_uInt32 nHint, bool bBroadcastSingleBroadcasters = true ); void BroadcastRefMoved( const sc::RefMovedHint& rHint ); /// only area, no cell broadcast @@ -1952,7 +1952,7 @@ public: void ClearFormulaTree(); void AppendToFormulaTrack( ScFormulaCell* pCell ); void RemoveFromFormulaTrack( ScFormulaCell* pCell ); - void TrackFormulas( sal_uLong nHintId = SC_HINT_DATACHANGED ); + void TrackFormulas( sal_uInt32 nHintId = SC_HINT_DATACHANGED ); bool IsInFormulaTree( ScFormulaCell* pCell ) const; bool IsInFormulaTrack( ScFormulaCell* pCell ) const; HardRecalcState GetHardRecalcState() { return eHardRecalcState; } |