[libnma/lr/gtk-4.0: 2/33] utils: drop utils_show_error_dialog()
- From: Lubomir Rintel <lkundrak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libnma/lr/gtk-4.0: 2/33] utils: drop utils_show_error_dialog()
- Date: Fri, 15 Oct 2021 12:24:12 +0000 (UTC)
commit 832d453dc4f577923668898abd7fe8893125cbfe
Author: Lubomir Rintel <lkundrak v3 sk>
Date: Wed Oct 13 16:39:09 2021 +0200
utils: drop utils_show_error_dialog()
It is not used anywhere.
src/utils/utils.c | 40 +---------------------------------------
src/utils/utils.h | 8 +-------
2 files changed, 2 insertions(+), 46 deletions(-)
---
diff --git a/src/utils/utils.c b/src/utils/utils.c
index 58b380e3..da4b7b36 100644
--- a/src/utils/utils.c
+++ b/src/utils/utils.c
@@ -3,7 +3,7 @@
*
* Dan Williams <dcbw redhat com>
*
- * Copyright 2007 - 2015 Red Hat, Inc.
+ * Copyright (C) 2007 - 2021 Red Hat, Inc.
*/
#include "nm-default.h"
@@ -161,44 +161,6 @@ utils_create_mobile_connection_id (const char *provider, const char *plan_name)
return g_strdup_printf (_("%s connection"), provider);
}
-void
-utils_show_error_dialog (const char *title,
- const char *text1,
- const char *text2,
- gboolean modal,
- GtkWindow *parent)
-{
- GtkWidget *err_dialog;
-
- g_return_if_fail (text1 != NULL);
-
- err_dialog = gtk_message_dialog_new (parent,
- GTK_DIALOG_DESTROY_WITH_PARENT,
- GTK_MESSAGE_ERROR,
- GTK_BUTTONS_CLOSE,
- "%s",
- text1);
-
- gtk_window_set_position (GTK_WINDOW (err_dialog), GTK_WIN_POS_CENTER_ALWAYS);
-
- if (text2)
- gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (err_dialog), "%s", text2);
- if (title)
- gtk_window_set_title (GTK_WINDOW (err_dialog), title);
-
- if (modal) {
- gtk_dialog_run (GTK_DIALOG (err_dialog));
- gtk_widget_destroy (err_dialog);
- } else {
- g_signal_connect (err_dialog, "delete-event", G_CALLBACK (gtk_widget_destroy), NULL);
- g_signal_connect (err_dialog, "response", G_CALLBACK (gtk_widget_destroy), NULL);
-
- gtk_widget_show (err_dialog);
- gtk_window_present (GTK_WINDOW (err_dialog));
- }
-}
-
-
gboolean
utils_char_is_ascii_print (char character)
{
diff --git a/src/utils/utils.h b/src/utils/utils.h
index 3192ea45..4764aae5 100644
--- a/src/utils/utils.h
+++ b/src/utils/utils.h
@@ -3,7 +3,7 @@
*
* Dan Williams <dcbw redhat com>
*
- * Copyright 2007 - 2015 Red Hat, Inc.
+ * Copyright (C) 2007 - 2021 Red Hat, Inc.
*/
#ifndef UTILS_H
@@ -24,12 +24,6 @@ char *utils_escape_notify_message (const char *src);
char *utils_create_mobile_connection_id (const char *provider,
const char *plan_name);
-void utils_show_error_dialog (const char *title,
- const char *text1,
- const char *text2,
- gboolean modal,
- GtkWindow *parent);
-
#define NMA_ERROR (g_quark_from_static_string ("nma-error-quark"))
typedef enum {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]