lotuswordpro: sal_Bool -> bool

Change-Id: I8a3d2aa6e0a6ee5bdb214f768870dc69d15e513d
This commit is contained in:
Stephan Bergmann
2014-09-15 15:16:55 +02:00
parent f5e617a6e4
commit b730eedf0f
2 changed files with 2 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ void XFList::ToXml(IXFStream *pStrm)
pStrm->EndElement( "text:unordered-list" );
}
void XFList::StartList(IXFStream *pStrm, sal_Bool bContinueNumber)
void XFList::StartList(IXFStream *pStrm, bool bContinueNumber)
{
IXFAttrList *pAttrList = pStrm->GetAttrList();
assert(NULL!=pAttrList);

View File

@@ -92,7 +92,7 @@ public:
*/
virtual void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
virtual void StartList(IXFStream *pStrm, sal_Bool bContinueNumber = sal_False);
virtual void StartList(IXFStream *pStrm, bool bContinueNumber = false);
virtual void EndList(IXFStream *pStrm);