diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-02 14:10:41 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-03 09:17:53 +0200 |
commit | 508cbb96a17bb085d162e0d605010af3123abe62 (patch) | |
tree | 590384900612b54c21b59a023f2b6db2c63b85ca | |
parent | 64825d26b14e754171426bec634f5aaedf0466e2 (diff) |
svx/fmgridcl.hxx: sal_Bool->bool
Change-Id: I610c408178f194db2a29e966feccba377f36e2cd
-rw-r--r-- | include/svx/fmgridcl.hxx | 2 | ||||
-rw-r--r-- | svx/source/fmcomp/fmgridcl.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/fmgridcl.hxx b/include/svx/fmgridcl.hxx index 4b6c11620035..8af1bd4e475a 100644 --- a/include/svx/fmgridcl.hxx +++ b/include/svx/fmgridcl.hxx @@ -120,7 +120,7 @@ public: void positioned(const ::com::sun::star::lang::EventObject& rEvent); // XBound - sal_Bool commit(); + bool commit(); // ::com::sun::star::form::XInsertListener void inserted(const ::com::sun::star::lang::EventObject& rEvent); diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx index db0e85bd962b..42e313353873 100644 --- a/svx/source/fmcomp/fmgridcl.cxx +++ b/svx/source/fmcomp/fmgridcl.cxx @@ -1385,7 +1385,7 @@ void FmGridControl::positioned(const ::com::sun::star::lang::EventObject& /*rEve implAdjustInSolarThread(false); } -sal_Bool FmGridControl::commit() +bool FmGridControl::commit() { // Commit nur ausfuehren, wenn nicht bereits ein Update vom ::com::sun::star::form::component::GridControl ausgefuehrt // wird @@ -1394,10 +1394,10 @@ sal_Bool FmGridControl::commit() if (Controller().Is() && Controller()->IsModified()) { if (!SaveModified()) - return sal_False; + return false; } } - return sal_True; + return true; } void FmGridControl::inserted(const ::com::sun::star::lang::EventObject& /*rEvent*/) |