From f670880382bbbeca6e31b708e3bdb294e016f6cb Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Tue, 28 Jan 2020 15:04:41 +0000 Subject: [PATCH] malcontent-control: Fix a typo in an enum value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The values are the same so this doesn’t introduce any functional changes, but it does fix the type. Signed-off-by: Philip Withnall --- malcontent-control/user-controls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/malcontent-control/user-controls.c b/malcontent-control/user-controls.c index 8ac0c9f..c15ba63 100644 --- a/malcontent-control/user-controls.c +++ b/malcontent-control/user-controls.c @@ -323,7 +323,7 @@ update_app_filter (MctUserControls *self) /* FIXME: make it asynchronous */ self->filter = mct_manager_get_app_filter (self->manager, act_user_get_uid (self->user), - MCT_GET_APP_FILTER_FLAGS_NONE, + MCT_MANAGER_GET_VALUE_FLAGS_NONE, self->cancellable, &error); @@ -712,7 +712,7 @@ blacklist_apps_cb (gpointer data) mct_manager_set_app_filter (self->manager, act_user_get_uid (self->user), new_filter, - MCT_GET_APP_FILTER_FLAGS_INTERACTIVE, + MCT_MANAGER_SET_VALUE_FLAGS_INTERACTIVE, self->cancellable, &error);