summaryrefslogtreecommitdiff
path: root/gtk2_ardour/draginfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/draginfo.h')
-rw-r--r--gtk2_ardour/draginfo.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk2_ardour/draginfo.h b/gtk2_ardour/draginfo.h
index 4b91fa6c1b..6d3a6b8de3 100644
--- a/gtk2_ardour/draginfo.h
+++ b/gtk2_ardour/draginfo.h
@@ -20,6 +20,8 @@
#ifndef __gtk2_ardour_drag_info_h_
#define __gtk2_ardour_drag_info_h_
+#include <list>
+
#include <gdk/gdk.h>
#include <stdint.h>
@@ -64,7 +66,9 @@ struct DragInfo {
bool move_threshold_passed;
bool want_move_threshold;
bool brushing;
- ARDOUR::Location* copied_location;
+ std::list<ARDOUR::Location*> copied_locations;
+
+ void clear_copied_locations ();
};
struct LineDragInfo {