diff options
author | rbuj <[email protected]> | 2021-10-20 21:21:40 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-03-07 22:54:00 +0100 |
commit | 73d1dc813f21b9f526375338517673e459e39296 (patch) | |
tree | 65252b9231c42e2c8eef30d6e1c29e8a440d1406 | |
parent | 746a7ef6a3ce6568698505e9dad9e39e75c69587 (diff) | |
download | pluma-73d1dc813f21b9f526375338517673e459e39296.tar.bz2 pluma-73d1dc813f21b9f526375338517673e459e39296.tar.xz |
pluma-commands-search: fix warning -Wenum-conversion
-rw-r--r-- | pluma/pluma-commands-search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pluma/pluma-commands-search.c b/pluma/pluma-commands-search.c index 7dfa20f8..b298f63f 100644 --- a/pluma/pluma-commands-search.c +++ b/pluma/pluma-commands-search.c @@ -398,7 +398,7 @@ do_replace (PlumaSearchDialog *dialog, { need_refind = !g_regex_match_simple(unescaped_search_text, selected_text, - match_case ? 0 : GTK_TEXT_SEARCH_CASE_INSENSITIVE , + match_case ? 0 : G_REGEX_CASELESS, 0); } } |