summaryrefslogtreecommitdiff
path: root/gtk2_ardour/latency_gui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-09-29 18:23:18 +0200
committerRobin Gareus <robin@gareus.org>2019-09-29 18:25:14 +0200
commitc5b6b232a6ed251e256b13f4c0c3deed0792ab5b (patch)
tree0d1f72fa9421db68fd1a2128c9657211d3e1955a /gtk2_ardour/latency_gui.cc
parent70c523e0e8f376ce5e2d940051f6f2f5709ad76f (diff)
Remove unused modal LatencyGUI Dialog
Diffstat (limited to 'gtk2_ardour/latency_gui.cc')
-rw-r--r--gtk2_ardour/latency_gui.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/gtk2_ardour/latency_gui.cc b/gtk2_ardour/latency_gui.cc
index c417edd5a9..1db8e502d1 100644
--- a/gtk2_ardour/latency_gui.cc
+++ b/gtk2_ardour/latency_gui.cc
@@ -163,14 +163,3 @@ LatencyGUI::change_latency_from_button (int dir)
adjustment.set_value (adjustment.get_value() - shift);
}
}
-
-LatencyDialog::LatencyDialog (const std::string& title, Latent& l, samplepos_t sr, samplepos_t psz)
- : ArdourDialog (title, false, true),
- lwidget (l, sr, psz)
-{
- get_vbox()->pack_start (lwidget);
- add_button (Stock::CLOSE, RESPONSE_CLOSE);
-
- show_all ();
- run ();
-}