summaryrefslogtreecommitdiff
path: root/svtools/source/contnr
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-11-27 13:55:44 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-11-28 10:01:31 -0500
commit22040a74cc0a598b54cc33259b5f39b6bd5ada5d (patch)
tree67eac1e67d36be152900f8f0b7dc691592f0addf /svtools/source/contnr
parent591e284d3b2d416d3eff5d91b2ec7f7fee6c38a0 (diff)
sal_Bool to bool.
Change-Id: I63bff9f8ba19e8f037edf29bc82555b8c6e77d1e
Diffstat (limited to 'svtools/source/contnr')
-rw-r--r--svtools/source/contnr/viewdataentry.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/contnr/viewdataentry.cxx b/svtools/source/contnr/viewdataentry.cxx
index f26ad15c35bb..544bb030cc7d 100644
--- a/svtools/source/contnr/viewdataentry.cxx
+++ b/svtools/source/contnr/viewdataentry.cxx
@@ -72,7 +72,7 @@ bool SvViewData::IsSelectable() const
return (nFlags & SVLISTENTRYFLAG_NOT_SELECTABLE) == 0;
}
-void SvViewData::SetFocus( sal_Bool bFocus)
+void SvViewData::SetFocus( bool bFocus )
{
if ( !bFocus )
nFlags &= (~SVLISTENTRYFLAG_FOCUSED);
@@ -80,7 +80,7 @@ void SvViewData::SetFocus( sal_Bool bFocus)
nFlags |= SVLISTENTRYFLAG_FOCUSED;
}
-void SvViewData::SetCursored( sal_Bool bCursored )
+void SvViewData::SetCursored( bool bCursored )
{
if ( !bCursored )
nFlags &= (~SVLISTENTRYFLAG_CURSORED);