Kaydet (Commit) fe04f5b2 authored tarafından Julien Nabet's avatar Julien Nabet

sal_Bool -> bool

Change-Id: I7429af4dc64ec6c69b6b9297779e51614362cf52
üst 9ea6b8f8
...@@ -1077,10 +1077,10 @@ void SfxFilterContainer::ReadSingleFilter_Impl( ...@@ -1077,10 +1077,10 @@ void SfxFilterContainer::ReadSingleFilter_Impl(
} }
SfxFilter* pFilter = bUpdate ? (SfxFilter*) SfxFilter::GetFilterByName( sFilterName ) : 0; SfxFilter* pFilter = bUpdate ? (SfxFilter*) SfxFilter::GetFilterByName( sFilterName ) : 0;
sal_Bool bNew = sal_False; bool bNew = false;
if (!pFilter) if (!pFilter)
{ {
bNew = sal_True; bNew = true;
pFilter = new SfxFilter( sFilterName , pFilter = new SfxFilter( sFilterName ,
sExtension , sExtension ,
nFlags , nFlags ,
......
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