Added _gtk_range_set_round_digits() insternal function

It's needed by gtkscale
This commit is contained in:
Javier Jardón
2010-08-13 01:50:09 +02:00
parent d38bf4825a
commit 1814ea6abd
3 changed files with 14 additions and 5 deletions

View File

@ -3997,3 +3997,10 @@ _gtk_range_get_stop_positions (GtkRange *range,
return range->layout->n_marks;
}
void
_gtk_range_set_round_digits (GtkRange *range,
gint round_digits)
{
range->round_digits = round_digits;
}