diff options
author | rbuj <[email protected]> | 2021-12-22 11:23:46 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-02-11 17:37:23 +0100 |
commit | b71aa9861c0bcaae602f42b24e18e2f816ceed03 (patch) | |
tree | 4e483b218f711b77dd031a427b9b1625f84fd551 /shell | |
parent | 05dc26a2c8abd952e7b3d46dae719530a546f7d9 (diff) | |
download | atril-b71aa9861c0bcaae602f42b24e18e2f816ceed03.tar.bz2 atril-b71aa9861c0bcaae602f42b24e18e2f816ceed03.tar.xz |
Fix implicit conversion changes signedness: 'gboolean' to 'guint'
Diffstat (limited to 'shell')
-rw-r--r-- | shell/eggfindbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/eggfindbar.c b/shell/eggfindbar.c index 13d7feb8..99e83921 100644 --- a/shell/eggfindbar.c +++ b/shell/eggfindbar.c @@ -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); |