Ejemplo n.º 1
0
/**
 * rb_source_get_delete_action:
 * @source: a #RBSource
 *
 * Returns the name of the UI action to use for 'delete'.
 * This allows the source to customise the visible action name
 * and description to better describe what deletion actually does.
 *
 * Return value: allocated string holding UI action name
 */
char *
rb_source_get_delete_action (RBSource *source)
{
	RBSourceClass *klass = RB_SOURCE_GET_CLASS (source);
	return klass->impl_get_delete_action (source);
}