Removed unused 0.5 second timer.
authorTaybin Rutkin <taybin@taybin.com>
Mon, 19 Mar 2007 21:25:22 +0000 (21:25 +0000)
committerTaybin Rutkin <taybin@taybin.com>
Mon, 19 Mar 2007 21:25:22 +0000 (21:25 +0000)
git-svn-id: svn://localhost/ardour2/trunk@1629 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/ardour_ui.cc
gtk2_ardour/ardour_ui.h
gtk2_ardour/ardour_ui_dialogs.cc

index 2fbe987a94dd900c718f8d3952fc46ccad9271f3..2c5ad6f81c8b2f3cf27cc45f0267c5838b059aed 100644 (file)
@@ -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 ()
 {
index 246b30edaed042d69a023a21ad28f1a8a780e7ea..c402baaff4188e275a03d83d6b5a96717f5e708b 100644 (file)
@@ -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;
index 765eb53282eac390ca10c588522a5469c456af48..15940c2e56f939dcce070ce6ebb351ab189cb10d 100644 (file)
@@ -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);
 }