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

Noel Grandin noel at peralex.com
Thu Sep 5 00:30:23 PDT 2013


 sfx2/source/dialog/filedlghelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 661e6cf497b8a83543ff10b21a01f3590d1bf504
Author: Noel Grandin <noel at peralex.com>
Date:   Thu Sep 5 09:27:42 2013 +0200

    fix windows build after my OUString changes
    
    this block of code is inside a WNT define
    
    Change-Id: I602b66267d84761e425c194c8f144ce9acd5f11f

diff --git a/sfx2/source/dialog/filedlghelper.cxx b/sfx2/source/dialog/filedlghelper.cxx
index a1ea3a2..6daab91 100644
--- a/sfx2/source/dialog/filedlghelper.cxx
+++ b/sfx2/source/dialog/filedlghelper.cxx
@@ -1920,7 +1920,7 @@ void FileDialogHelper_Impl::addGraphicFilter()
     }
 
 #if defined(WNT)
-    if ( aExtensions.Len() > 240 )
+    if ( aExtensions.getLength() > 240 )
         aExtensions = FILEDIALOG_FILTER_ALL;
 #endif
     sal_Bool bIsInOpenMode = isInOpenMode();


More information about the Libreoffice-commits mailing list