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 /cui/source | |
parent | b1de52241c1c2045ceab4ea3526f51f145be2930 (diff) |
svtools: sal_Bool->bool
Change-Id: I22d8869551f46d2a0607f670f937853f394b6acf
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/options/connpooloptions.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cui/source/options/connpooloptions.cxx b/cui/source/options/connpooloptions.cxx index 8af4d6ccb038..b966c033176e 100644 --- a/cui/source/options/connpooloptions.cxx +++ b/cui/source/options/connpooloptions.cxx @@ -72,9 +72,9 @@ namespace offapp virtual void PaintCell( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId ) const; virtual bool SeekRow( long nRow ); - virtual sal_Bool SaveModified(); + virtual bool SaveModified(); - virtual sal_Bool IsTabAllowed(sal_Bool _bForward) const; + virtual bool IsTabAllowed(bool _bForward) const; virtual void StateChanged( StateChangedType nStateChange ); @@ -106,10 +106,10 @@ namespace offapp } - sal_Bool DriverListControl::IsTabAllowed(sal_Bool /*_bForward*/) const + bool DriverListControl::IsTabAllowed(bool /*_bForward*/) const { - // no travinling within the fields via RETURN and TAB - return sal_False; + // no travelling within the fields via RETURN and TAB + return false; } @@ -268,9 +268,9 @@ namespace offapp } - sal_Bool DriverListControl::SaveModified() + bool DriverListControl::SaveModified() { - return sal_True; + return true; } |