Kaydet (Commit) 508cbb96 authored tarafından Noel Grandin's avatar Noel Grandin

svx/fmgridcl.hxx: sal_Bool->bool

Change-Id: I610c408178f194db2a29e966feccba377f36e2cd
üst 64825d26
......@@ -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);
......
......@@ -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*/)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment