summaryrefslogtreecommitdiff
path: root/svx/source/form
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-21 15:33:43 +0200
committerNoel Grandin <noel@peralex.com>2015-04-22 10:28:41 +0200
commit1b5f6935a498c1d9eea35ba0aa2edd25ee11ca47 (patch)
tree40347c60c1970acf90dd6db95f4067bb4216a62e /svx/source/form
parent38143e4599e4ec759a11ea96a4b852bb00a42ab6 (diff)
convert SV_DRAGDOP_ constants to scoped enum
Change-Id: If953610ed24a2b6d5f33f2ba014fba2ca5308d7d
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/datanavi.cxx2
-rw-r--r--svx/source/form/filtnav.cxx2
-rw-r--r--svx/source/form/navigatortree.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx
index 3e77a89b03f6..0956934e8344 100644
--- a/svx/source/form/datanavi.cxx
+++ b/svx/source/form/datanavi.cxx
@@ -137,7 +137,7 @@ namespace svxform
EnableContextMenuHandling();
if ( DGTInstance == m_eGroup )
- SetDragDropMode( SV_DRAGDROP_CTRL_MOVE |SV_DRAGDROP_CTRL_COPY | SV_DRAGDROP_APP_COPY );
+ SetDragDropMode( DragDropMode::CTRL_MOVE |DragDropMode::CTRL_COPY | DragDropMode::APP_COPY );
}
DataTreeListBox::~DataTreeListBox()
diff --git a/svx/source/form/filtnav.cxx b/svx/source/form/filtnav.cxx
index 97744603341b..bc19f378f9bc 100644
--- a/svx/source/form/filtnav.cxx
+++ b/svx/source/form/filtnav.cxx
@@ -1141,7 +1141,7 @@ FmFilterNavigator::FmFilterNavigator( vcl::Window* pParent )
EnableInplaceEditing( true );
SetSelectionMode(MULTIPLE_SELECTION);
- SetDragDropMode(0xFFFF);
+ SetDragDropMode(DragDropMode::ALL);
m_aDropActionTimer.SetTimeoutHdl(LINK(this, FmFilterNavigator, OnDropActionTimer));
}
diff --git a/svx/source/form/navigatortree.cxx b/svx/source/form/navigatortree.cxx
index 46a444d35bff..e2b9247aa7bd 100644
--- a/svx/source/form/navigatortree.cxx
+++ b/svx/source/form/navigatortree.cxx
@@ -143,7 +143,7 @@ namespace svxform
m_aNavigatorImages.GetImage( RID_SVXIMG_EXPANDEDNODE )
);
- SetDragDropMode(0xFFFF);
+ SetDragDropMode(DragDropMode::ALL);
EnableInplaceEditing( true );
SetSelectionMode(MULTIPLE_SELECTION);