diff options
author | rbuj <[email protected]> | 2020-07-25 18:54:01 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-28 16:16:05 +0200 |
commit | b983fa0660a77e6d2729618dd7f8aa54fdf04324 (patch) | |
tree | 5ba1da89631430de63ee93bc0445c6d6d2547680 | |
parent | b24362929761f9145a05c987521d5f955b47a109 (diff) | |
download | caja-b983fa0660a77e6d2729618dd7f8aa54fdf04324.tar.bz2 caja-b983fa0660a77e6d2729618dd7f8aa54fdf04324.tar.xz |
eel-editable-label: Consecutive break/return statements are unnecessary
-rw-r--r-- | eel/eel-editable-label.c | 1 | ||||
-rw-r--r-- | libcaja-private/caja-icon-container.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/eel/eel-editable-label.c b/eel/eel-editable-label.c index af008c56..96598a87 100644 --- a/eel/eel-editable-label.c +++ b/eel/eel-editable-label.c @@ -2792,7 +2792,6 @@ eel_editable_label_move_cursor (EelEditableLabel *label, case GTK_MOVEMENT_DISPLAY_LINES: new_pos = eel_editable_label_move_line (label, new_pos, count); break; - break; case GTK_MOVEMENT_PARAGRAPHS: case GTK_MOVEMENT_PAGES: break; diff --git a/libcaja-private/caja-icon-container.c b/libcaja-private/caja-icon-container.c index 5de4ac39..b45d046f 100644 --- a/libcaja-private/caja-icon-container.c +++ b/libcaja-private/caja-icon-container.c @@ -3278,8 +3278,8 @@ rightmost_in_top_row (CajaIconContainer *container, { return TRUE; } - return compare_icons_vertical (container, best_so_far, candidate) > 0; - return compare_icons_horizontal (container, best_so_far, candidate) < 0; + return ((compare_icons_vertical (container, best_so_far, candidate) > 0) && + (compare_icons_horizontal (container, best_so_far, candidate) < 0)); } static gboolean |