diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-05 09:27:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-05 09:27:42 +0200 |
commit | 661e6cf497b8a83543ff10b21a01f3590d1bf504 (patch) | |
tree | 91b3080a368ff50886ffe8eee95dd181e9c0fdee | |
parent | 9f04bfd8d53a7640bd6f0707708401a8ac9fb386 (diff) |
fix windows build after my OUString changes
this block of code is inside a WNT define
Change-Id: I602b66267d84761e425c194c8f144ce9acd5f11f
-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(); |