Ejemplo n.º 1
0
/* Reset the temporary colorfilters */
void
color_filters_reset_tmp(void)
{
    guint8 i;

    for ( i=1 ; i<=10 ; i++ ) {
        color_filters_set_tmp(i, NULL, TRUE);
    }
    /* Remember that there are now *no* temporary coloring filters set */
    tmp_colors_set = FALSE;
    return;
}
Ejemplo n.º 2
0
/* Reset the temporary colorfilters */
gboolean
color_filters_reset_tmp(gchar **err_msg)
{
    guint8 i;

    for ( i=1 ; i<=10 ; i++ ) {
        if (!color_filters_set_tmp(i, NULL, TRUE, err_msg))
            return FALSE;
    }
    /* Remember that there are now *no* temporary coloring filters set */
    tmp_colors_set = FALSE;
    return TRUE;
}
Ejemplo n.º 3
0
void funnel_statistics_set_color_filter_slot(guint8 filter_num, const gchar* filter_string) {
    color_filters_set_tmp(filter_num, (gchar *)filter_string, FALSE);
}