summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/pfuncache.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 14:39:27 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:05:01 +0200
commitd7f99137e0e2d576d4d36fd9a9008c105b4e8b8c (patch)
tree4525b3f430abf009ed081dbc4fb2831625f81272 /sc/source/ui/inc/pfuncache.hxx
parent651d68fd47d2fb72520a4fd21ed8a8987b9cf2f7 (diff)
sal_Bool->bool
Change-Id: I9283bdfcd54e3f06d907cab47d2239051fa55dee
Diffstat (limited to 'sc/source/ui/inc/pfuncache.hxx')
-rw-r--r--sc/source/ui/inc/pfuncache.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/pfuncache.hxx b/sc/source/ui/inc/pfuncache.hxx
index eeba9c238097..d334137d4790 100644
--- a/sc/source/ui/inc/pfuncache.hxx
+++ b/sc/source/ui/inc/pfuncache.hxx
@@ -58,7 +58,7 @@ public:
void SetRanges(const ScRangeList& rNew) { aRanges = rNew; }
void SetOptions(const ScPrintOptions& rNew) { aOptions = rNew; }
- sal_Bool operator==(const ScPrintSelectionStatus& rOther) const
+ bool operator==(const ScPrintSelectionStatus& rOther) const
{ return eMode == rOther.eMode && aRanges == rOther.aRanges && aOptions == rOther.aOptions; }
ScPrintSelectionMode GetMode() const { return eMode; }
@@ -101,7 +101,7 @@ public:
const ScPrintSelectionStatus& rStatus );
~ScPrintFuncCache();
- sal_Bool IsSameSelection( const ScPrintSelectionStatus& rStatus ) const;
+ bool IsSameSelection( const ScPrintSelectionStatus& rStatus ) const;
void InitLocations( const ScMarkData& rMark, OutputDevice* pDev );
bool FindLocation( const ScAddress& rCell, ScPrintPageLocation& rLocation ) const;