diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-10-01 12:11:15 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-10-01 12:11:15 +0200 |
commit | d0c08311b02c720aeeabcafdaee1c799bf987a37 (patch) | |
tree | 9b897920157cfc21ac28da3ff51d81579ebf4d3e | |
parent | 4e601bda1798dd9e1651e41db0e17818c62d1763 (diff) |
cui: fix up WNT-only code
Change-Id: I70f1592ac26428611c2d8f6fc0090f97b9cd0025
-rw-r--r-- | cui/source/dialogs/cuigaldlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index e5d4cbc8a353..2c8d085d9594 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -965,7 +965,7 @@ void TPGalleryThemeProperties::FillFilterList() } #if defined(WNT) - if ( aExtensions.Len() > 240 ) + if (aExtensions.getLength() > 240) aExtensions = "*.*"; #endif |