diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-21 16:18:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-22 10:28:42 +0200 |
commit | dd7778a76915685d9b334e1f0718f556f6309687 (patch) | |
tree | 8e4d1fa582195c4cbf52e3e6386070c9493fc422 /sd | |
parent | 2884e9be256207d0876e6d67300a85462801778b (diff) |
convert SV_ENTRYFLAG constants to scoped enum
Change-Id: I457b32ed5ee5d74e6f8361e7de79cbd406122651
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/sdtreelb.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx index 1e43cc07e6bd..0a96dd736de3 100644 --- a/sd/source/ui/dlg/sdtreelb.cxx +++ b/sd/source/ui/dlg/sdtreelb.cxx @@ -1492,7 +1492,7 @@ bool SdPageObjsTLB::IsDropAllowed (SvTreeListEntry* pEntry) if ( ! IsDropFormatSupported(SdPageObjsTransferable::GetListBoxDropFormatId())) return false; - if ((pEntry->GetFlags() & SV_ENTRYFLAG_DISABLE_DROP) != 0) + if (pEntry->GetFlags() & SvTLEntryFlags::DISABLE_DROP) return false; return true; |