diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-09-18 20:08:28 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-09-18 20:08:28 +0200 |
commit | fe04f5b22ce182a7e1779a993c0f0a92d6a71dd1 (patch) | |
tree | fe06f4b5d69fc4ac1a778dee9169eac9fb3f1c01 /sfx2 | |
parent | 9ea6b8f88441b15c8987176977c38b1393b81ae3 (diff) |
sal_Bool -> bool
Change-Id: I7429af4dc64ec6c69b6b9297779e51614362cf52
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/bastyp/fltfnc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/bastyp/fltfnc.cxx b/sfx2/source/bastyp/fltfnc.cxx index 5f5285011908..c35c156e9cdd 100644 --- a/sfx2/source/bastyp/fltfnc.cxx +++ b/sfx2/source/bastyp/fltfnc.cxx @@ -1077,10 +1077,10 @@ void SfxFilterContainer::ReadSingleFilter_Impl( } SfxFilter* pFilter = bUpdate ? (SfxFilter*) SfxFilter::GetFilterByName( sFilterName ) : 0; - sal_Bool bNew = sal_False; + bool bNew = false; if (!pFilter) { - bNew = sal_True; + bNew = true; pFilter = new SfxFilter( sFilterName , sExtension , nFlags , |