X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdock_history.cpp;h=c4e66e8a080a95d3da3736d85ad15821be55418e;hb=e8a065f2385c219c511b57dac52786120bfa097d;hp=dde2718370ec9825cdf9f99612c81df25241f91c;hpb=3a3c4bca3a17137bec5d7960560934b91ef4146e;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/dock_history.cpp b/synfig-studio/trunk/src/gtkmm/dock_history.cpp index dde2718..c4e66e8 100644 --- a/synfig-studio/trunk/src/gtkmm/dock_history.cpp +++ b/synfig-studio/trunk/src/gtkmm/dock_history.cpp @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file dialog_history.cpp ** \brief Template File ** @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include "historytreestore.h" #endif @@ -48,7 +48,7 @@ using namespace std; using namespace etl; -using namespace sinfg; +using namespace synfig; using namespace studio; /* === M A C R O S ========================================================= */ @@ -70,7 +70,7 @@ Dock_History::Dock_History(): action_group->add(Gtk::Action::create( "clear-undo", - Gtk::StockID("sinfg-clear_undo"), + Gtk::StockID("synfig-clear_undo"), _("Clear the UNDO Stack"), _("Clear the UNDO Stack") ), @@ -81,7 +81,7 @@ Dock_History::Dock_History(): ); action_group->add(Gtk::Action::create( "clear-redo", - Gtk::StockID("sinfg-clear_redo"), + Gtk::StockID("synfig-clear_redo"), _("Clear the REDO Stack"), _("Clear the REDO Stack") ), @@ -130,7 +130,7 @@ Dock_History::Dock_History(): /* add_button( - Gtk::StockID("sinfg-clear_undo"), + Gtk::StockID("synfig-clear_undo"), _("Clear the UNDO Stack") )->signal_clicked().connect( sigc::mem_fun( @@ -139,7 +139,7 @@ Dock_History::Dock_History(): ) ); add_button( - Gtk::StockID("sinfg-clear_redo"), + Gtk::StockID("synfig-clear_redo"), _("Clear the REDO Stack") )->signal_clicked().connect( sigc::mem_fun( @@ -360,7 +360,7 @@ Dock_History::on_action_event(GdkEvent *event) //signal_user_click()(event->button.button,row,(ColumnID)column->get_sort_column_id()); if((ColumnID)column->get_sort_column_id()==COLUMNID_JUMP) { - etl::handle action(row[model.action]); + etl::handle action(row[model.action]); try{ if((bool)row[model.is_undo]) { @@ -399,7 +399,7 @@ Dock_History::on_action_toggle(const Glib::ustring& path_string) const Gtk::TreeRow row = *(selected_instance->history_tree_store()->get_iter(path)); - handle action=row[history_tree_model.action]; + handle action=row[history_tree_model.action]; - selected_instance->sinfgapp::Instance::set_action_status(action,!action->is_active()); + selected_instance->synfigapp::Instance::set_action_status(action,!action->is_active()); }