mirror of https://github.com/GNOME/gimp.git
app: tab cleaning.
This commit is contained in:
parent
53b3673bd8
commit
a68edf51c6
|
@ -259,13 +259,13 @@ gimp_action_group_get_property (GObject *object,
|
|||
|
||||
static gboolean
|
||||
gimp_action_group_check_unique_action (GimpActionGroup *group,
|
||||
const gchar *action_name)
|
||||
const gchar *action_name)
|
||||
{
|
||||
if (G_UNLIKELY (gtk_action_group_get_action (GTK_ACTION_GROUP (group),
|
||||
action_name)))
|
||||
{
|
||||
g_warning ("Refusing to add non-unique action '%s' to action group '%s'",
|
||||
action_name,
|
||||
action_name,
|
||||
gtk_action_group_get_name (GTK_ACTION_GROUP (group)));
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -345,7 +345,7 @@ gimp_action_group_update (GimpActionGroup *group,
|
|||
|
||||
void
|
||||
gimp_action_group_add_actions (GimpActionGroup *group,
|
||||
const gchar *msg_context,
|
||||
const gchar *msg_context,
|
||||
const GimpActionEntry *entries,
|
||||
guint n_entries)
|
||||
{
|
||||
|
|
|
@ -146,27 +146,27 @@ void gimp_action_group_update (GimpActionGroup *group,
|
|||
gpointer update_data);
|
||||
|
||||
void gimp_action_group_add_actions (GimpActionGroup *group,
|
||||
const gchar *msg_context,
|
||||
const gchar *msg_context,
|
||||
const GimpActionEntry *entries,
|
||||
guint n_entries);
|
||||
void gimp_action_group_add_toggle_actions (GimpActionGroup *group,
|
||||
const gchar *msg_context,
|
||||
const gchar *msg_context,
|
||||
const GimpToggleActionEntry *entries,
|
||||
guint n_entries);
|
||||
GSList *gimp_action_group_add_radio_actions (GimpActionGroup *group,
|
||||
const gchar *msg_context,
|
||||
const gchar *msg_context,
|
||||
const GimpRadioActionEntry *entries,
|
||||
guint n_entries,
|
||||
GSList *radio_group,
|
||||
gint value,
|
||||
GCallback callback);
|
||||
void gimp_action_group_add_enum_actions (GimpActionGroup *group,
|
||||
const gchar *msg_context,
|
||||
const gchar *msg_context,
|
||||
const GimpEnumActionEntry *entries,
|
||||
guint n_entries,
|
||||
GCallback callback);
|
||||
void gimp_action_group_add_string_actions (GimpActionGroup *group,
|
||||
const gchar *msg_context,
|
||||
const gchar *msg_context,
|
||||
const GimpStringActionEntry *entries,
|
||||
guint n_entries,
|
||||
GCallback callback);
|
||||
|
|
Loading…
Reference in New Issue