Remove dead code.

This commit is contained in:
David Robillard 2014-11-27 04:17:15 -05:00
parent 3d4b1d324e
commit 16947f751b
3 changed files with 0 additions and 4 deletions

View file

@ -34,7 +34,6 @@ using namespace Gtk;
EditorCursor::EditorCursor (Editor& ed, bool (Editor::*callbck)(GdkEvent*,ArdourCanvas::Item*))
: _editor (ed)
, _track_canvas_item (new ArdourCanvas::Arrow (_editor.get_hscroll_group()))
, _length (1.0)
{
CANVAS_DEBUG_NAME (_track_canvas_item, "track canvas editor cursor");
@ -55,7 +54,6 @@ EditorCursor::EditorCursor (Editor& ed, bool (Editor::*callbck)(GdkEvent*,Ardour
EditorCursor::EditorCursor (Editor& ed)
: _editor (ed)
, _track_canvas_item (new ArdourCanvas::Arrow (_editor.get_hscroll_group()))
, _length (1.0)
{
CANVAS_DEBUG_NAME (_track_canvas_item, "track canvas cursor");

View file

@ -54,5 +54,4 @@ class EditorCursor {
Editor& _editor;
ArdourCanvas::Arrow* _track_canvas_item;
framepos_t _current_frame;
double _length;
};

View file

@ -69,7 +69,6 @@ class LIBGTKMM2EXT_API BarController : public Gtk::Alignment
gint switch_to_bar ();
gint switch_to_spinner ();
bool _grabbed;
bool _switching;
bool _switch_on_release;