diff options
author | rbuj <[email protected]> | 2020-05-10 13:42:25 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-06-07 09:27:25 +0200 |
commit | 6b52b205630e68466ca963d8986907d0cd593795 (patch) | |
tree | 80253902d77a3a245421b0b91136a5a7d4edc6d4 /gsearchtool/src/gsearchtool.c | |
parent | 3bdea3055b3d26ff281d84b821b00d81af9cd8ec (diff) | |
download | mate-utils-6b52b205630e68466ca963d8986907d0cd593795.tar.bz2 mate-utils-6b52b205630e68466ca963d8986907d0cd593795.tar.xz |
gsearchtool: Remove enum conversion warning
Diffstat (limited to 'gsearchtool/src/gsearchtool.c')
-rw-r--r-- | gsearchtool/src/gsearchtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsearchtool/src/gsearchtool.c b/gsearchtool/src/gsearchtool.c index 9a199984..964e7f4c 100644 --- a/gsearchtool/src/gsearchtool.c +++ b/gsearchtool/src/gsearchtool.c @@ -925,7 +925,7 @@ add_file_to_search_results (const gchar * file, reference = gtk_tree_row_reference_new (GTK_TREE_MODEL (store), path); gtk_tree_path_free (path); - handle = g_file_monitor_file (g_file, G_FILE_MONITOR_EVENT_DELETED, NULL, &error); + handle = g_file_monitor_file (g_file, G_FILE_MONITOR_NONE, NULL, &error); if (error == NULL) { monitor->gsearch = gsearch; |