Replace fallthrough comments with G_GNUC_FALLTHROUGH

This commit is contained in:
Timm Bäder 2020-03-06 08:32:21 +01:00
parent 63126a1b3e
commit a1c75795bc
12 changed files with 15 additions and 12 deletions

View File

@ -303,6 +303,7 @@ translate_device_classes (GdkDisplay *display,
direction,
scroll_info->increment);
}
break;
#endif /* XINPUT_2_2 */
default:
/* Ignore */

View File

@ -1814,7 +1814,7 @@ gdk_x11_surface_set_type_hint (GdkSurface *surface,
break;
default:
g_warning ("Unknown hint %d passed to gdk_surface_set_type_hint", hint);
/* Fall thru */
G_GNUC_FALLTHROUGH;
case GDK_SURFACE_TYPE_HINT_NORMAL:
atom = gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_WINDOW_TYPE_NORMAL");
break;

View File

@ -387,7 +387,7 @@ gtk_css_token_print (const GtkCssToken *token,
case GTK_CSS_TOKEN_SIGNED_NUMBER:
if (token->number.number >= 0)
g_string_append_c (string, '+');
/* fall through */
G_GNUC_FALLTHROUGH;
case GTK_CSS_TOKEN_SIGNLESS_INTEGER:
case GTK_CSS_TOKEN_SIGNLESS_NUMBER:
g_ascii_dtostr (buf, G_ASCII_DTOSTR_BUF_SIZE, token->number.number);
@ -403,7 +403,7 @@ gtk_css_token_print (const GtkCssToken *token,
case GTK_CSS_TOKEN_SIGNED_INTEGER_DIMENSION:
if (token->dimension.value >= 0)
g_string_append_c (string, '+');
/* fall through */
G_GNUC_FALLTHROUGH;
case GTK_CSS_TOKEN_SIGNLESS_INTEGER_DIMENSION:
case GTK_CSS_TOKEN_DIMENSION:
g_ascii_dtostr (buf, G_ASCII_DTOSTR_BUF_SIZE, token->dimension.value);

View File

@ -142,6 +142,7 @@ gtk_app_chooser_dialog_response (GtkDialog *dialog,
case GTK_RESPONSE_CANCEL:
case GTK_RESPONSE_DELETE_EVENT:
priv->dismissed = TRUE;
break;
default:
break;
}

View File

@ -1314,6 +1314,7 @@ gtk_calendar_key_controller_key_pressed (GtkEventControllerKey *controller,
calendar_select_and_focus_day (calendar, day);
}
break;
default:
break;
}

View File

@ -590,7 +590,7 @@ key_controller_key_pressed (GtkEventControllerKey *key,
{
case GDK_KEY_BackSpace:
cleared = TRUE;
/* fall thru */
G_GNUC_FALLTHROUGH;
case GDK_KEY_Escape:
goto out;
default:

View File

@ -68,9 +68,6 @@ gtk_css_value_dimension_compute (GtkCssValue *number,
{
switch (number->unit)
{
default:
g_assert_not_reached();
G_GNUC_FALLTHROUGH;
case GTK_CSS_PERCENT:
/* percentages for font sizes are computed, other percentages aren't */
if (property_id == GTK_CSS_PROPERTY_FONT_SIZE)
@ -123,6 +120,8 @@ gtk_css_value_dimension_compute (GtkCssValue *number,
case GTK_CSS_MS:
return gtk_css_dimension_value_new (number->value / 1000.0,
GTK_CSS_S);
default:
g_assert_not_reached();
}
}

View File

@ -1527,6 +1527,7 @@ gtk_entry_completion_compute_prefix (GtkEntryCompletion *completion,
case (gunichar)-2:
case (gunichar)-1:
*q = 0;
break;
default: ;
}
}

View File

@ -3539,8 +3539,8 @@ set_startup_mode (GtkFileChooserWidget *impl)
operation_mode_set (impl, OPERATION_MODE_RECENT);
break;
}
/* else fall thru */
G_GNUC_FALLTHROUGH;
case STARTUP_MODE_CWD:
switch_to_cwd (impl);
break;

View File

@ -1745,6 +1745,7 @@ gtk_icon_view_snapshot (GtkWidget *widget,
rect.y = dest_item->cell_area.y;
rect.width = 2;
rect.height = dest_item->cell_area.height;
break;
case GTK_ICON_VIEW_NO_DROP:
default:
break;

View File

@ -32,7 +32,7 @@ _gtk_print_convert_to_mm (gdouble len,
case GTK_UNIT_NONE:
default:
g_warning ("Unsupported unit");
/* Fall through */
G_GNUC_FALLTHROUGH;
case GTK_UNIT_POINTS:
return len * (MM_PER_INCH / POINTS_PER_INCH);
break;
@ -52,7 +52,7 @@ _gtk_print_convert_from_mm (gdouble len,
case GTK_UNIT_NONE:
default:
g_warning ("Unsupported unit");
/* Fall through */
G_GNUC_FALLTHROUGH;
case GTK_UNIT_POINTS:
return len / (MM_PER_INCH / POINTS_PER_INCH);
break;

View File

@ -3796,8 +3796,7 @@ gtk_text_delete_from_cursor (GtkText *self,
start_pos = gtk_text_move_forward_word (self, start_pos, FALSE);
start_pos = gtk_text_move_backward_word (self, start_pos, FALSE);
}
/* Fall through */
G_GNUC_FALLTHROUGH;
case GTK_DELETE_WORD_ENDS:
while (count < 0)
{