Kaydet (Commit) 4b415950 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Power

sal_Bool -> bool

Change-Id: I3a7cdd6fd488af20b15a205515fc6ee593371f0a
üst 1cb0443c
......@@ -145,7 +145,7 @@ void PageCollector::CollectMasterPages( const Reference< XModel >& rxModel, std:
{
MasterPageEntity aMasterPageEntity;
aMasterPageEntity.xMasterPage = xMasterPage;
aMasterPageEntity.bUsed = sal_False;
aMasterPageEntity.bUsed = false;
rMasterPageList.push_back( aMasterPageEntity );
}
}
......@@ -163,7 +163,7 @@ void PageCollector::CollectMasterPages( const Reference< XModel >& rxModel, std:
{
if ( aIter->xMasterPage == xMasterPage )
{
aIter->bUsed = sal_True;
aIter->bUsed = true;
break;
}
++aIter;
......
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