diff options
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/fileview.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fpicker/source/office/fileview.cxx b/fpicker/source/office/fileview.cxx index b87548cc5a6a..719ea9232592 100644 --- a/fpicker/source/office/fileview.cxx +++ b/fpicker/source/office/fileview.cxx @@ -91,14 +91,13 @@ using ::svt::FolderDescriptor; enum class FileViewFlags { NONE = 0x00, - ONLYFOLDER = 0x01, MULTISELECTION = 0x02, SHOW_TYPE = 0x04, SHOW_NONE = 0x20, }; namespace o3tl { - template<> struct typed_flags<FileViewFlags> : is_typed_flags<FileViewFlags, 0x27> {}; + template<> struct typed_flags<FileViewFlags> : is_typed_flags<FileViewFlags, 0x26> {}; } namespace @@ -809,8 +808,6 @@ SvtFileView::SvtFileView( vcl::Window* pParent, WinBits nBits, Control( pParent, nBits ) { FileViewFlags nFlags = FileViewFlags::NONE; - if ( bOnlyFolder ) - nFlags |= FileViewFlags::ONLYFOLDER; if ( bMultiSelection ) nFlags |= FileViewFlags::MULTISELECTION; if ( bShowType ) |