summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-05 09:27:42 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 09:27:42 +0200
commit661e6cf497b8a83543ff10b21a01f3590d1bf504 (patch)
tree91b3080a368ff50886ffe8eee95dd181e9c0fdee /sfx2
parent9f04bfd8d53a7640bd6f0707708401a8ac9fb386 (diff)
fix windows build after my OUString changes
this block of code is inside a WNT define Change-Id: I602b66267d84761e425c194c8f144ce9acd5f11f
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/filedlghelper.cxx2
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();