diff options
Diffstat (limited to 'sc/inc/lookupcache.hxx')
-rw-r--r-- | sc/inc/lookupcache.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/lookupcache.hxx b/sc/inc/lookupcache.hxx index 8a4f59d731da..820fa3d6be4e 100644 --- a/sc/inc/lookupcache.hxx +++ b/sc/inc/lookupcache.hxx @@ -151,9 +151,9 @@ private: struct QueryKey { - SCROW const mnRow; - SCTAB const mnTab; - QueryOp const meOp; + SCROW mnRow; + SCTAB mnTab; + QueryOp meOp; QueryKey( const ScAddress & rAddress, const QueryOp eOp ) : mnRow( rAddress.Row()), @@ -180,7 +180,7 @@ private: struct QueryCriteriaAndResult { - QueryCriteria const maCriteria; + QueryCriteria maCriteria; ScAddress maAddress; QueryCriteriaAndResult( const QueryCriteria & rCriteria, const ScAddress & rAddress ) : @@ -191,7 +191,7 @@ private: }; std::unordered_map< QueryKey, QueryCriteriaAndResult, QueryKey::Hash > maQueryMap; - ScRange const maRange; + ScRange maRange; ScDocument * mpDoc; ScLookupCacheMap & mCacheMap; |