app: port GimpAction and friends to icon names

This commit is contained in:
Michael Natterer
2014-05-06 23:47:38 +02:00
parent 5ae6f2b8c0
commit 9ed5b3f45e
32 changed files with 156 additions and 172 deletions

View File

@ -31,7 +31,7 @@ struct _GimpActionFactoryEntry
{
gchar *identifier;
gchar *label;
gchar *stock_id;
gchar *icon_name;
GimpActionGroupSetupFunc setup_func;
GimpActionGroupUpdateFunc update_func;
};
@ -68,7 +68,7 @@ GimpActionFactory * gimp_action_factory_new (Gimp *gimp);
void gimp_action_factory_group_register (GimpActionFactory *factory,
const gchar *identifier,
const gchar *label,
const gchar *stock_id,
const gchar *icon_name,
GimpActionGroupSetupFunc setup_func,
GimpActionGroupUpdateFunc update_func);