mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-20 02:10:12 +00:00
Fix make check
This commit is contained in:
parent
dffb6283a0
commit
f96d9132d6
@ -3020,6 +3020,7 @@ gtk_print_operation_set_allow_async
|
||||
gtk_print_operation_set_default_page_setup
|
||||
gtk_print_operation_get_default_page_setup
|
||||
gtk_print_operation_set_print_settings
|
||||
gtk_print_operation_get_n_pages_to_print
|
||||
gtk_print_operation_get_print_settings
|
||||
gtk_print_operation_set_job_name
|
||||
gtk_print_operation_set_n_pages
|
||||
|
@ -1233,6 +1233,10 @@ gtk_icon_view_set_property (GObject *object,
|
||||
gtk_icon_view_set_tooltip_column (icon_view, g_value_get_int (value));
|
||||
break;
|
||||
|
||||
case PROP_ITEM_PADDING:
|
||||
gtk_icon_view_set_item_padding (icon_view, g_value_get_int (value));
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
@ -1294,6 +1298,10 @@ gtk_icon_view_get_property (GObject *object,
|
||||
g_value_set_int (value, icon_view->priv->tooltip_column);
|
||||
break;
|
||||
|
||||
case PROP_ITEM_PADDING:
|
||||
g_value_set_int (value, icon_view->priv->item_padding);
|
||||
break;
|
||||
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user