action muxer: Remove unused api

This commit is contained in:
Matthias Clasen
2019-06-22 22:38:14 +00:00
parent 06ff4a8b6f
commit 95e5472ade
2 changed files with 0 additions and 16 deletions

View File

@@ -1052,20 +1052,6 @@ gtk_action_muxer_remove (GtkActionMuxer *muxer,
}
}
GActionGroup *
gtk_action_muxer_lookup (GtkActionMuxer *muxer,
const gchar *prefix)
{
Group *group;
group = g_hash_table_lookup (muxer->groups, prefix);
if (group != NULL)
return group->group;
return NULL;
}
/*< private >
* gtk_action_muxer_new:
* @widget: the widget to which the muxer belongs

View File

@@ -54,8 +54,6 @@ void gtk_action_muxer_insert (GtkActi
void gtk_action_muxer_remove (GtkActionMuxer *muxer,
const gchar *prefix);
GActionGroup * gtk_action_muxer_lookup (GtkActionMuxer *muxer,
const gchar *prefix);
GActionGroup * gtk_action_muxer_find (GtkActionMuxer *muxer,
const char *action_name,
const char **unprefixed_name);