Mercurial > cropper
comparison support.c @ 2:e359bea4c8ac
added code for ratio swap; new names for ratio operations; added main.h; some more
author | meillo@marmaro.de |
---|---|
date | Tue, 04 Dec 2007 23:20:51 +0100 |
parents | 80535e4deaa4 |
children | 5e282003f0c1 |
comparison
equal
deleted
inserted
replaced
1:80535e4deaa4 | 2:e359bea4c8ac |
---|---|
110 } | 110 } |
111 | 111 |
112 | 112 |
113 /* This is used to set ATK action descriptions. */ | 113 /* This is used to set ATK action descriptions. */ |
114 void glade_set_atk_action_description(AtkAction* action, const gchar* action_name, const gchar* description) { | 114 void glade_set_atk_action_description(AtkAction* action, const gchar* action_name, const gchar* description) { |
115 gint n_actions | 115 gint n_actions; |
116 gint i; | 116 gint i; |
117 | 117 |
118 n_actions = atk_action_get_n_actions (action); | 118 n_actions = atk_action_get_n_actions (action); |
119 for (i = 0; i < n_actions; i++) { | 119 for (i = 0; i < n_actions; i++) { |
120 if (!strcmp (atk_action_get_name (action, i), action_name)) { | 120 if (!strcmp (atk_action_get_name (action, i), action_name)) { |