Remove unused variable

This commit is contained in:
Robin Gareus 2020-04-01 22:03:17 +02:00
parent 38caf9ddd3
commit 75adc33629
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 0 additions and 5 deletions

View File

@ -373,7 +373,6 @@ Editor::Editor ()
, lock_dialog (0)
/* , last_event_time { 0, 0 } */ /* this initialization style requires C++11 */
, _dragging_playhead (false)
, _dragging_edit_point (false)
, _follow_playhead (true)
, _stationary_playhead (false)
, _maximised (false)

View File

@ -1566,7 +1566,6 @@ private:
std::set<boost::shared_ptr<ARDOUR::Playlist> > motion_frozen_playlists;
bool _dragging_playhead;
bool _dragging_edit_point;
void marker_drag_motion_callback (GdkEvent*);
void marker_drag_finished_callback (GdkEvent*);

View File

@ -4417,7 +4417,6 @@ MarkerDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
bool is_start;
Location *location = _editor->find_location_from_marker (_marker, is_start);
_editor->_dragging_edit_point = true;
update_item (location);
@ -4722,8 +4721,6 @@ MarkerDrag::finished (GdkEvent* event, bool movement_occurred)
return;
}
_editor->_dragging_edit_point = false;
XMLNode &before = _editor->session()->locations()->get_state();
bool in_command = false;