Removed unused 0.5 second timer.
git-svn-id: svn://localhost/ardour2/trunk@1629 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -88,7 +88,6 @@ ARDOUR_UI *ARDOUR_UI::theArdourUI = 0;
|
||||
|
||||
sigc::signal<void,bool> ARDOUR_UI::Blink;
|
||||
sigc::signal<void> ARDOUR_UI::RapidScreenUpdate;
|
||||
sigc::signal<void> ARDOUR_UI::MidRapidScreenUpdate;
|
||||
sigc::signal<void> ARDOUR_UI::SuperRapidScreenUpdate;
|
||||
sigc::signal<void,nframes_t> ARDOUR_UI::Clock;
|
||||
|
||||
@@ -620,13 +619,6 @@ ARDOUR_UI::every_point_one_seconds ()
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
gint
|
||||
ARDOUR_UI::every_point_oh_five_seconds ()
|
||||
{
|
||||
MidRapidScreenUpdate(); /* EMIT_SIGNAL */
|
||||
return true;
|
||||
}
|
||||
|
||||
gint
|
||||
ARDOUR_UI::every_point_zero_one_seconds ()
|
||||
{
|
||||
|
||||
@@ -155,7 +155,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
|
||||
|
||||
static sigc::signal<void,bool> Blink;
|
||||
static sigc::signal<void> RapidScreenUpdate;
|
||||
static sigc::signal<void> MidRapidScreenUpdate;
|
||||
static sigc::signal<void> SuperRapidScreenUpdate;
|
||||
static sigc::signal<void,nframes_t> Clock;
|
||||
|
||||
@@ -517,7 +516,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
|
||||
|
||||
gint every_second ();
|
||||
gint every_point_one_seconds ();
|
||||
gint every_point_oh_five_seconds ();
|
||||
gint every_point_zero_one_seconds ();
|
||||
|
||||
sigc::connection second_connection;
|
||||
|
||||
@@ -153,7 +153,6 @@ ARDOUR_UI::connect_to_session (Session *s)
|
||||
|
||||
second_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::every_second), 1000);
|
||||
point_one_second_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::every_point_one_seconds), 100);
|
||||
// point_oh_five_second_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::every_point_oh_five_seconds), 50);
|
||||
point_zero_one_second_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::every_point_zero_one_seconds), 40);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user