summaryrefslogtreecommitdiff
path: root/include/editeng/tstpitem.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 14:11:45 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:30 +0200
commit015b80e852f2292fc12f3e209726178f05d95e3c (patch)
tree8c870efbc28cc329f6505f88a320a70563e03d53 /include/editeng/tstpitem.hxx
parentc521f0720800a943fedffdc102aa51e09008c677 (diff)
editeng: sal_Bool->bool
Change-Id: I9e27453f0b77a23ae3d811f0a50a85d3fdf80978
Diffstat (limited to 'include/editeng/tstpitem.hxx')
-rw-r--r--include/editeng/tstpitem.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/tstpitem.hxx b/include/editeng/tstpitem.hxx
index 719f50239664..c0a71362dc2a 100644
--- a/include/editeng/tstpitem.hxx
+++ b/include/editeng/tstpitem.hxx
@@ -53,7 +53,7 @@ public:
const sal_Unicode cFil = cDfltFillChar );
sal_Int32& GetTabPos() { return nTabPos; }
- sal_Int32 GetTabPos() const { return nTabPos; }
+ sal_Int32 GetTabPos() const { return nTabPos; }
SvxTabAdjust& GetAdjustment() { return eAdjustment; }
SvxTabAdjust GetAdjustment() const { return eAdjustment; }
@@ -67,7 +67,7 @@ public:
OUString GetValueString() const;
// the "old" operator==()
- sal_Bool IsEqual( const SvxTabStop& rTS ) const
+ bool IsEqual( const SvxTabStop& rTS ) const
{
return ( nTabPos == rTS.nTabPos &&
eAdjustment == rTS.eAdjustment &&
@@ -76,9 +76,9 @@ public:
}
// For the SortedArray:
- sal_Bool operator==( const SvxTabStop& rTS ) const
+ bool operator==( const SvxTabStop& rTS ) const
{ return nTabPos == rTS.nTabPos; }
- sal_Bool operator <( const SvxTabStop& rTS ) const
+ bool operator <( const SvxTabStop& rTS ) const
{ return nTabPos < rTS.nTabPos; }
SvxTabStop& operator=( const SvxTabStop& rTS )