2005-06-30 Robert Love <rml@novell.com>

* gnome/vpn-properties/nm-vpn-properties.c: display an error dialog and
          then exit if the glade file is not found.  currently the application
          just hangs.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@774 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love 2005-06-30 20:30:46 +00:00 committed by Robert Love
parent 35d84047df
commit 04d812f8af
2 changed files with 28 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-06-30 Robert Love <rml@novell.com>
* gnome/vpn-properties/nm-vpn-properties.c: display an error dialog and
then exit if the glade file is not found. currently the application
just hangs.
2005-06-30 Robert Love <rml@novell.com>
* src/nm-dbus-nm.c: Patch by Bill Moss <bmoss@clemson.edu> to

View file

@ -918,7 +918,7 @@ out:
#define VPN_NAME_FILES_DIR "/etc/NetworkManager/VPN"
static void
static gboolean
init_app (void)
{
GtkWidget *w;
@ -941,6 +941,21 @@ init_app (void)
glade_file = g_strdup_printf ("%s/%s", GLADEDIR, "nm-vpn-properties.glade");
xml = glade_xml_new (glade_file, NULL, NULL);
g_free (glade_file);
if (!xml) {
GtkWidget *dialog;
dialog = gtk_message_dialog_new (NULL,
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
_("Unable to load"));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
_("Cannot find some needed resources (the glade file)!"));
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
return FALSE;
}
/* Load all VPN UI modules by inspecting .name files */
vpn_types = NULL;
@ -1068,6 +1083,8 @@ init_app (void)
/* update "Edit" and "Delete" for current selection */
update_edit_del_sensitivity ();
return TRUE;
}
@ -1121,7 +1138,10 @@ main (int argc, char *argv[])
glade_gnome_init ();
init_app ();
if (init_app () == FALSE) {
ret = 1;
goto out;
}
if (do_import) {
import_settings (import_svc, import_file);