summaryrefslogtreecommitdiff
path: root/include/tools/svborder.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/svborder.hxx')
-rw-r--r--include/tools/svborder.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tools/svborder.hxx b/include/tools/svborder.hxx
index de4a8666cbd8..0fc87a9b7f0f 100644
--- a/include/tools/svborder.hxx
+++ b/include/tools/svborder.hxx
@@ -44,12 +44,12 @@ public:
nRight = nRightP;
nBottom = nBottomP;
}
- sal_Bool operator == ( const SvBorder & rObj ) const
+ bool operator == ( const SvBorder & rObj ) const
{
return nTop == rObj.nTop && nRight == rObj.nRight &&
nBottom == rObj.nBottom && nLeft == rObj.nLeft;
}
- sal_Bool operator != ( const SvBorder & rObj ) const
+ bool operator != ( const SvBorder & rObj ) const
{ return !(*this == rObj); }
SvBorder & operator = ( const SvBorder & rBorder )
{
@@ -75,7 +75,7 @@ public:
Bottom() -= rBorder.Bottom();
return *this;
}
- sal_Bool IsInside( const SvBorder & rInside )
+ bool IsInside( const SvBorder & rInside )
{
return nTop >= rInside.nTop && nRight >= rInside.nRight &&
nBottom >= rInside.nBottom && nLeft >= rInside.nLeft;