progressbar: Fix a signed/unsigned comparison

This commit is contained in:
Philip Withnall 2011-07-15 17:36:45 +01:00
parent b0e836e231
commit fd705ce7c7

View File

@ -427,7 +427,7 @@ gtk_progress_bar_real_update (GtkProgressBar *pbar)
GtkStyleContext *context; GtkStyleContext *context;
GtkStateFlags state; GtkStateFlags state;
GtkBorder padding; GtkBorder padding;
guint size; gint size;
gtk_widget_get_allocation (widget, &allocation); gtk_widget_get_allocation (widget, &allocation);
context = gtk_widget_get_style_context (widget); context = gtk_widget_get_style_context (widget);