summaryrefslogtreecommitdiff
path: root/clients/tui/newt/nmt-newt-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'clients/tui/newt/nmt-newt-utils.c')
-rw-r--r--clients/tui/newt/nmt-newt-utils.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/clients/tui/newt/nmt-newt-utils.c b/clients/tui/newt/nmt-newt-utils.c
index f37a851e6c..213e198b64 100644
--- a/clients/tui/newt/nmt-newt-utils.c
+++ b/clients/tui/newt/nmt-newt-utils.c
@@ -359,21 +359,11 @@ nmt_newt_edit_string (const char *data)
goto done;
}
-#if GLIB_CHECK_VERSION (2, 34, 0)
- G_GNUC_BEGIN_IGNORE_DEPRECATIONS
if (!g_spawn_check_exit_status (status, &error)) {
nmt_newt_message_dialog (_("Editor failed: %s"), error->message);
g_error_free (error);
goto done;
}
- G_GNUC_END_IGNORE_DEPRECATIONS
-#else
- if (WIFEXITED (status)) {
- if (WEXITSTATUS (status) != 0)
- nmt_newt_message_dialog (_("Editor failed with status %d"), WEXITSTATUS (status));
- } else if (WIFSIGNALED (status))
- nmt_newt_message_dialog (_("Editor failed with signal %d"), WTERMSIG (status));
-#endif
if (!g_file_get_contents (filename, &new_data, NULL, &error)) {
nmt_newt_message_dialog (_("Could not re-read file: %s"), error->message);