diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-08 09:06:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-08 09:07:08 +0200 |
commit | 216fdcbdb4c17f349ffd68abd1f372bea3287fad (patch) | |
tree | 1090e07b1e79ee4980f311d2b204488b0b14b6e0 /sc/inc | |
parent | 27e8eb73c17bedbf200091ec45c5eddf55a5d8d5 (diff) |
convert RECALCMODE_ constants to scoped enum
Change-Id: Ice2e45a3db59adc34a160b4b410cc51c750835f2
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/address.hxx | 2 | ||||
-rw-r--r-- | sc/inc/formulacell.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx index ecb5110af671..f6650d4e975f 100644 --- a/sc/inc/address.hxx +++ b/sc/inc/address.hxx @@ -840,7 +840,7 @@ inline bool ScRefAddress::operator==( const ScRefAddress& rRefAddress ) const // Global functions -// Special values for cells always broadcasting or listening (RECALCMODE_ALWAYS +// Special values for cells always broadcasting or listening (ScRecalcMode::ALWAYS // and the like). #define BCA_BRDCST_ALWAYS ScAddress( 0, SCROW_MAX, 0 ) #define BCA_LISTEN_ALWAYS ScRange( BCA_BRDCST_ALWAYS, BCA_BRDCST_ALWAYS ) diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx index 7b7ed096a678..8e84e00e4898 100644 --- a/sc/inc/formulacell.hxx +++ b/sc/inc/formulacell.hxx @@ -346,7 +346,7 @@ public: bool IsInChangeTrack() const { return bInChangeTrack;} // For import filters! - void AddRecalcMode( formula::ScRecalcMode ); + void AddRecalcMode( ScRecalcMode ); /** For import only: set a double result. */ void SetHybridDouble( double n ); /** For import only: set a string result. |