diff options
author | rbuj <[email protected]> | 2022-02-10 09:23:14 +0100 |
---|---|---|
committer | mbkma <[email protected]> | 2022-07-22 08:48:59 +0200 |
commit | 141440bf89af9df9b64f77ac3a1c0fc63b768989 (patch) | |
tree | ac9c684f96e61af9e8e36d24dbf90866df60ca49 /eel/eel-labeled-image.c | |
parent | 160d754f2228e74daea5735c9fb6655e082de906 (diff) | |
download | caja-141440bf89af9df9b64f77ac3a1c0fc63b768989.tar.bz2 caja-141440bf89af9df9b64f77ac3a1c0fc63b768989.tar.xz |
Fix build warning -Wmissing-field-initializers
Diffstat (limited to 'eel/eel-labeled-image.c')
-rw-r--r-- | eel/eel-labeled-image.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/eel/eel-labeled-image.c b/eel/eel-labeled-image.c index 838da9cb..c7539bc8 100644 --- a/eel/eel-labeled-image.c +++ b/eel/eel-labeled-image.c @@ -2303,7 +2303,8 @@ eel_labeled_image_button_get_type (void) NULL, /* class_data */ sizeof (GtkButton), 0, /* n_preallocs */ - (GInstanceInitFunc) NULL + (GInstanceInitFunc) NULL, + NULL /* value_table */ }; type = g_type_register_static @@ -2331,7 +2332,8 @@ eel_labeled_image_check_button_get_type (void) NULL, /* class_data */ sizeof (GtkCheckButton), 0, /* n_preallocs */ - (GInstanceInitFunc) NULL + (GInstanceInitFunc) NULL, + NULL /* value_table */ }; type = g_type_register_static @@ -2359,7 +2361,8 @@ eel_labeled_image_toggle_button_get_type (void) NULL, /* class_data */ sizeof (GtkToggleButton), 0, /* n_preallocs */ - (GInstanceInitFunc) NULL + (GInstanceInitFunc) NULL, + NULL /* value_table */ }; type = g_type_register_static @@ -2387,7 +2390,8 @@ eel_labeled_image_radio_button_get_type (void) NULL, /* class_data */ sizeof (GtkRadioButton), 0, /* n_preallocs */ - (GInstanceInitFunc) NULL + (GInstanceInitFunc) NULL, + NULL /* value_table */ }; type = g_type_register_static |