[Libreoffice-commits] core.git: sfx2/source
Noel Grandin
noel at peralex.com
Thu Aug 29 01:03:10 PDT 2013
sfx2/source/dialog/filedlghelper.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 7bd1e6bbd208287944b76915b875cef4bc135842
Author: Noel Grandin <noel at peralex.com>
Date: Thu Aug 29 10:02:14 2013 +0200
fix windows build after my OUString changes
missed a chunk inside an #if defined(WNT) block
Change-Id: I8c49d2c92f77471e8d0c7c46491f6faba7fbc677
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