diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-20 11:14:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-24 08:12:09 +0200 |
commit | f661ac03e049844fd529fb6ff02e628b32cac650 (patch) | |
tree | ec4c4c9ac697df5a3645e1d0c7d426d03968d50c /include/svtools/editimplementation.hxx | |
parent | b1de52241c1c2045ceab4ea3526f51f145be2930 (diff) |
svtools: sal_Bool->bool
Change-Id: I22d8869551f46d2a0607f670f937853f394b6acf
Diffstat (limited to 'include/svtools/editimplementation.hxx')
-rw-r--r-- | include/svtools/editimplementation.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/editimplementation.hxx b/include/svtools/editimplementation.hxx index 96eaf50964a0..edf3e8f22369 100644 --- a/include/svtools/editimplementation.hxx +++ b/include/svtools/editimplementation.hxx @@ -66,14 +66,14 @@ void GenericEditImplementation< EDIT >::SetSelection( const Selection& _rSelecti template <class EDIT> -void GenericEditImplementation< EDIT >::SetReadOnly( sal_Bool bReadOnly ) +void GenericEditImplementation< EDIT >::SetReadOnly( bool bReadOnly ) { m_rEdit.SetReadOnly( bReadOnly ); } template <class EDIT> -sal_Bool GenericEditImplementation< EDIT >::IsReadOnly() const +bool GenericEditImplementation< EDIT >::IsReadOnly() const { return m_rEdit.IsReadOnly(); } @@ -122,7 +122,7 @@ void GenericEditImplementation< EDIT >::SetModified() template <class EDIT> -sal_Bool GenericEditImplementation< EDIT >::IsModified() const +bool GenericEditImplementation< EDIT >::IsModified() const { return m_rEdit.IsModified(); } |