summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-13 14:29:17 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:17 +0200
commitf30f646e1e132fb3e5019669657ebc1a33ccb1fc (patch)
tree82513cf0e2605299df258c2e71baacfa4bb19b36 /sw
parent27042facc6e2c21be630c709d4818962db63352d (diff)
sal_Bool->bool
Change-Id: Ib0f6699e994f5a71603779b8227bf081b71a5dd6
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/accmap.hxx2
-rw-r--r--sw/source/core/access/accmap.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/accmap.hxx b/sw/inc/accmap.hxx
index 0329cf77ee22..13a609a205aa 100644
--- a/sw/inc/accmap.hxx
+++ b/sw/inc/accmap.hxx
@@ -264,7 +264,7 @@ public:
// IAccessibleViewForwarder
- virtual sal_Bool IsValid() const;
+ virtual bool IsValid() const;
virtual Rectangle GetVisibleArea() const;
virtual Point LogicToPixel (const Point& rPoint) const;
virtual Size LogicToPixel (const Size& rSize) const;
diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx
index 99a43f2f3843..0b40ef6a8aa9 100644
--- a/sw/source/core/access/accmap.cxx
+++ b/sw/source/core/access/accmap.cxx
@@ -3137,9 +3137,9 @@ void SwAccessibleMap::FireEvents()
}
-sal_Bool SwAccessibleMap::IsValid() const
+bool SwAccessibleMap::IsValid() const
{
- return sal_True;
+ return true;
}
Rectangle SwAccessibleMap::GetVisibleArea() const