Kaydet (Commit) 251decd3 authored tarafından Noel Grandin's avatar Noel Grandin

remove unused BrkAction enumerator from SdrEventKind

Change-Id: I46c50bbbad5d269b7f15e041db115fa7f37a8168
Reviewed-on: https://gerrit.libreoffice.org/34205Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 8593cd23
...@@ -139,6 +139,7 @@ for d in definitionSet: ...@@ -139,6 +139,7 @@ for d in definitionSet:
"include/vcl/print.hxx", # NupOrderType, from UI combobox "include/vcl/print.hxx", # NupOrderType, from UI combobox
"sw/source/uibase/inc/swcont.hxx", # RegionMode, from UI; ContentTypeId, from UI(registry) "sw/source/uibase/inc/swcont.hxx", # RegionMode, from UI; ContentTypeId, from UI(registry)
"sw/inc/toxe.hxx", # ToxAuthorityType (from UI) "sw/inc/toxe.hxx", # ToxAuthorityType (from UI)
"include/svx/sxekitm.hxx", # SdrEdgeKind (from UI)
# represents constants from an external API # represents constants from an external API
"opencl/inc/opencl_device_selection.h", "opencl/inc/opencl_device_selection.h",
"vcl/inc/sft.hxx", "vcl/inc/sft.hxx",
......
...@@ -66,7 +66,6 @@ enum class SdrEventKind { ...@@ -66,7 +66,6 @@ enum class SdrEventKind {
MoveAction, MoveAction,
EndAction, EndAction,
BackAction, BackAction,
BrkAction,
EndCreate, EndCreate,
EndDrag, EndDrag,
MarkObj, MarkObj,
......
...@@ -789,7 +789,6 @@ bool SdrView::DoMouseEvent(const SdrViewEvent& rVEvt) ...@@ -789,7 +789,6 @@ bool SdrView::DoMouseEvent(const SdrViewEvent& rVEvt)
case SdrEventKind::MoveAction: MovAction(aLogicPos); bRet=true; break; case SdrEventKind::MoveAction: MovAction(aLogicPos); bRet=true; break;
case SdrEventKind::EndAction: EndAction(); bRet=true; break; case SdrEventKind::EndAction: EndAction(); bRet=true; break;
case SdrEventKind::BackAction: BckAction(); bRet=true; break; case SdrEventKind::BackAction: BckAction(); bRet=true; break;
case SdrEventKind::BrkAction: BrkAction(); bRet=true; break;
case SdrEventKind::EndMark : EndAction(); bRet=true; break; case SdrEventKind::EndMark : EndAction(); bRet=true; break;
case SdrEventKind::BrkMark : { case SdrEventKind::BrkMark : {
BrkAction(); BrkAction();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment