summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_canvas.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-31 17:45:20 -0400
committerDavid Robillard <d@drobilla.net>2014-08-31 17:54:16 -0400
commit885f1c71ec62dbfa2250d8821e698dfe01be93d7 (patch)
treee9d3c92e9ece7a550757fdf4d5bb88eb5143ecf2 /gtk2_ardour/editor_canvas.cc
parentc95c221493e03ee029223531d459c14b4d4d392d (diff)
Remove unused variables (fix warnings).
Diffstat (limited to 'gtk2_ardour/editor_canvas.cc')
-rw-r--r--gtk2_ardour/editor_canvas.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/gtk2_ardour/editor_canvas.cc b/gtk2_ardour/editor_canvas.cc
index 66caeb7bc6..bf97bb73fc 100644
--- a/gtk2_ardour/editor_canvas.cc
+++ b/gtk2_ardour/editor_canvas.cc
@@ -517,14 +517,11 @@ Editor::maybe_autoscroll (bool allow_horiz, bool allow_vert, bool from_headers)
ArdourCanvas::Rect scrolling_boundary;
Gtk::Allocation alloc;
- int cx, cy;
if (from_headers) {
alloc = controls_layout.get_allocation ();
} else {
alloc = _track_canvas_viewport->get_allocation ();
- cx = alloc.get_x();
- cy = alloc.get_y();
/* reduce height by the height of the timebars, which happens
to correspond to the position of the hv_scroll_group.
@@ -581,7 +578,6 @@ Editor::autoscroll_canvas ()
Gdk::ModifierType mask;
frameoffset_t dx = 0;
bool no_stop = false;
- bool y_motion = false;
get_window()->get_pointer (x, y, mask);
@@ -644,14 +640,14 @@ Editor::autoscroll_canvas ()
/* scroll to make higher tracks visible */
if (autoscroll_cnt && (autoscroll_cnt % speed_factor == 0)) {
- y_motion = scroll_up_one_track ();
+ scroll_up_one_track ();
vertical_motion = true;
}
} else if (y > autoscroll_boundary.y1) {
if (autoscroll_cnt && (autoscroll_cnt % speed_factor == 0)) {
- y_motion = scroll_down_one_track ();
+ scroll_down_one_track ();
vertical_motion = true;
}
}