diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-29 10:02:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 10:02:14 +0200 |
commit | 7bd1e6bbd208287944b76915b875cef4bc135842 (patch) | |
tree | 0fb6181a4918e85bd033bb178716c08fadc3c1dc /sfx2/source/dialog | |
parent | 511354504cfc2c8f002752775d5bb336b01bd6ab (diff) |
fix windows build after my OUString changes
missed a chunk inside an #if defined(WNT) block
Change-Id: I8c49d2c92f77471e8d0c7c46491f6faba7fbc677
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r-- | sfx2/source/dialog/filedlghelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/filedlghelper.cxx b/sfx2/source/dialog/filedlghelper.cxx index a1ea3a2fbdb4..6daab91625b7 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(); |