X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fkeyframeactionmanager.cpp;h=b91751c59c72e048c6fa07f60efcb366b0eb58db;hb=58575b7ece3fabec0c0ffa2633590819c8812e7b;hp=070d7f947756ad489cd249ab22fa5acd9223225e;hpb=d479d04a68be54d17e5f37cb588b22c3fd2929c5;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/keyframeactionmanager.cpp b/synfig-studio/trunk/src/gtkmm/keyframeactionmanager.cpp index 070d7f9..b91751c 100644 --- a/synfig-studio/trunk/src/gtkmm/keyframeactionmanager.cpp +++ b/synfig-studio/trunk/src/gtkmm/keyframeactionmanager.cpp @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -34,6 +35,8 @@ #include #include "instance.h" +#include "general.h" + #endif /* === U S I N G =========================================================== */ @@ -215,7 +218,7 @@ KeyframeActionManager::refresh() action_group_->add(Gtk::Action::create( "action-keyframe_add", Gtk::StockID("gtk-add"), - _("Add new Keyframe"),_("Add new Keyframe") + _("Add New Keyframe"),_("Add New Keyframe") ), sigc::mem_fun(*this,&KeyframeActionManager::on_add_keyframe) ); @@ -232,7 +235,8 @@ KeyframeActionManager::refresh() } { - Glib::RefPtr action(Gtk::Action::create("keyframe-properties", Gtk::StockID("gtk-properties"), _("Keyframe Properties"))); + Glib::RefPtr action(Gtk::Action::create("keyframe-properties", Gtk::StockID("gtk-properties"), + _("Keyframe Properties"), _("Keyframe Properties"))); action_group_->add(action,sigc::mem_fun(*this,&KeyframeActionManager::on_keyframe_properties)); if(keyframe_tree_->get_selection()->count_selected_rows()==0) action->set_sensitive(false);