aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/MachinaGUI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/MachinaGUI.cpp')
-rw-r--r--src/gui/MachinaGUI.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui/MachinaGUI.cpp b/src/gui/MachinaGUI.cpp
index e1ba61f..c0a04a9 100644
--- a/src/gui/MachinaGUI.cpp
+++ b/src/gui/MachinaGUI.cpp
@@ -57,7 +57,6 @@ MachinaGUI::MachinaGUI(SharedPtr<Machina::Engine> engine)
xml->get_widget("help_about_menuitem", _menu_help_about);
xml->get_widget("help_help_menuitem", _menu_help_help);
xml->get_widget("canvas_scrolledwindow", _canvas_scrolledwindow);
- xml->get_widget("status_text", _status_text);
xml->get_widget("slave_radiobutton", _slave_radiobutton);
xml->get_widget("bpm_radiobutton", _bpm_radiobutton);
xml->get_widget("bpm_spinbutton", _bpm_spinbutton);
@@ -223,17 +222,6 @@ MachinaGUI::zoom(double z)
}
-void
-MachinaGUI::status_message(const string& msg)
-{
- if (_status_text->get_buffer()->size() > 0)
- _status_text->get_buffer()->insert(_status_text->get_buffer()->end(), "\n");
-
- _status_text->get_buffer()->insert(_status_text->get_buffer()->end(), msg);
- _status_text->scroll_to_mark(_status_text->get_buffer()->get_insert(), 0);
-}
-
-
/** Update the sensitivity status of menus to reflect the present.
*/
void