summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-02 14:10:41 +0200
committerNoel Grandin <noel@peralex.com>2014-04-03 09:17:53 +0200
commit508cbb96a17bb085d162e0d605010af3123abe62 (patch)
tree590384900612b54c21b59a023f2b6db2c63b85ca /svx/source
parent64825d26b14e754171426bec634f5aaedf0466e2 (diff)
svx/fmgridcl.hxx: sal_Bool->bool
Change-Id: I610c408178f194db2a29e966feccba377f36e2cd
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/fmcomp/fmgridcl.cxx6
1 files changed, 3 insertions, 3 deletions
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*/)