[Libreoffice-commits] core.git: sfx2/source

Julien Nabet serval2412 at yahoo.fr
Wed Sep 18 11:09:02 PDT 2013


 sfx2/source/bastyp/fltfnc.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fe04f5b22ce182a7e1779a993c0f0a92d6a71dd1
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Wed Sep 18 20:08:28 2013 +0200

    sal_Bool -> bool
    
    Change-Id: I7429af4dc64ec6c69b6b9297779e51614362cf52

diff --git a/sfx2/source/bastyp/fltfnc.cxx b/sfx2/source/bastyp/fltfnc.cxx
index 5f52850..c35c156 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                  ,


More information about the Libreoffice-commits mailing list