Skip to content

Commit

Permalink
Fix implicit conversion changes signedness: 'gboolean' to 'guint'
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuj authored and raveit65 committed Feb 11, 2022
1 parent 05dc26a commit b71aa98
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion libdocument/ev-transition-effect.c
Expand Up @@ -81,7 +81,7 @@ ev_transition_effect_set_property (GObject *object,
priv->scale = g_value_get_double (value);
break;
case PROP_RECTANGULAR:
priv->rectangular = g_value_get_boolean (value);
priv->rectangular = (g_value_get_boolean (value) != FALSE);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
Expand Down
10 changes: 5 additions & 5 deletions libview/ev-document-model.c
Expand Up @@ -500,7 +500,7 @@ _ev_document_model_set_dual_page_internal (EvDocumentModel *model,
if (dual_page == model->dual_page)
return;

model->dual_page = dual_page;
model->dual_page = (dual_page != FALSE);

g_object_notify (G_OBJECT (model), "dual-page");
}
Expand Down Expand Up @@ -566,7 +566,7 @@ ev_document_model_set_inverted_colors (EvDocumentModel *model,
if (inverted_colors == model->inverted_colors)
return;

model->inverted_colors = inverted_colors;
model->inverted_colors = (inverted_colors != FALSE);

g_object_notify (G_OBJECT (model), "inverted-colors");
}
Expand All @@ -590,7 +590,7 @@ ev_document_model_set_continuous (EvDocumentModel *model,
if (continuous == model->continuous)
return;

model->continuous = continuous;
model->continuous = (continuous != FALSE);

g_object_notify (G_OBJECT (model), "continuous");
}
Expand Down Expand Up @@ -634,7 +634,7 @@ ev_document_model_set_dual_page_odd_pages_left (EvDocumentModel *model,
if (odd_left == model->dual_page_odd_left)
return;

model->dual_page_odd_left = odd_left;
model->dual_page_odd_left = (odd_left != FALSE);

g_object_notify (G_OBJECT (model), "dual-odd-left");
}
Expand All @@ -658,7 +658,7 @@ ev_document_model_set_fullscreen (EvDocumentModel *model,
if (fullscreen == model->fullscreen)
return;

model->fullscreen = fullscreen;
model->fullscreen = (fullscreen != FALSE);

g_object_notify (G_OBJECT (model), "fullscreen");
}
Expand Down
4 changes: 2 additions & 2 deletions libview/ev-print-operation.c
Expand Up @@ -1257,8 +1257,8 @@ ev_print_operation_export_print_dialog_response_cb (GtkDialog *dial
export->pages_per_sheet = MAX (1, gtk_print_settings_get_number_up (print_settings));

export->copies = gtk_print_settings_get_n_copies (print_settings);
export->collate = gtk_print_settings_get_collate (print_settings);
export->reverse = gtk_print_settings_get_reverse (print_settings);
export->collate = (gtk_print_settings_get_collate (print_settings) != FALSE);
export->reverse = (gtk_print_settings_get_reverse (print_settings) != FALSE);

if (export->collate) {
export->uncollated_copies = export->copies;
Expand Down
2 changes: 1 addition & 1 deletion libview/ev-timeline.c
Expand Up @@ -387,7 +387,7 @@ ev_timeline_set_loop (EvTimeline *timeline,
g_return_if_fail (EV_IS_TIMELINE (timeline));

priv = ev_timeline_get_instance_private (timeline);
priv->loop = loop;
priv->loop = (loop != FALSE);

g_object_notify (G_OBJECT (timeline), "loop");
}
Expand Down
2 changes: 1 addition & 1 deletion shell/eggfindbar.c
Expand Up @@ -617,7 +617,7 @@ egg_find_bar_set_case_sensitive (EggFindBar *find_bar,

if (priv->case_sensitive != case_sensitive)
{
priv->case_sensitive = case_sensitive;
priv->case_sensitive = (case_sensitive != FALSE);

gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (priv->case_button),
priv->case_sensitive);
Expand Down

0 comments on commit b71aa98

Please sign in to comment.