diff options
author | Dan Winship <danw@src.gnome.org> | 2003-03-25 23:48:33 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-03-25 23:48:33 +0800 |
commit | b04bd957c79358e009caf31dafee3889e1ec6492 (patch) | |
tree | b5a25349f7c866a5748c37f37386270e280f6630 /shell/e-shell-shared-folder-picker-dialog.c | |
parent | cb46b4039bff5dce4748800950d43d1b1957dbce (diff) | |
download | gsoc2013-evolution-b04bd957c79358e009caf31dafee3889e1ec6492.tar.gz gsoc2013-evolution-b04bd957c79358e009caf31dafee3889e1ec6492.tar.zst gsoc2013-evolution-b04bd957c79358e009caf31dafee3889e1ec6492.zip |
Update for e_notice move. Likewise Likewise Likewise Likewise Likewise
* e-folder-dnd-bridge.c: Update for e_notice move.
* e-setup.c: Likewise
* e-shell-folder-commands.c: Likewise
* e-shell-folder-creation-dialog.c: Likewise
* e-shell-offline-sync.c: Likewise
* e-shell-shared-folder-picker-dialog.c: Likewise
* e-shell-view-menu.c: Likewise
* e-shell.c: Likewise
* evolution-shell-component-utils.c: Likewise
* Makefile.am (libeshell_la_LIBADD): libeshell depends on
libeutil.
* e-corba-storage.c: Fix warnings
svn path=/trunk/; revision=20500
Diffstat (limited to 'shell/e-shell-shared-folder-picker-dialog.c')
-rw-r--r-- | shell/e-shell-shared-folder-picker-dialog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shell-shared-folder-picker-dialog.c b/shell/e-shell-shared-folder-picker-dialog.c index 1614d49b76..191eccbbe3 100644 --- a/shell/e-shell-shared-folder-picker-dialog.c +++ b/shell/e-shell-shared-folder-picker-dialog.c @@ -33,7 +33,7 @@ #include "Evolution-Addressbook-SelectNames.h" -#include <gal/widgets/e-gui-utils.h> +#include "e-util/e-dialog-utils.h" #include <libgnome/gnome-i18n.h> #include <glade/glade.h> @@ -278,7 +278,7 @@ show_dialog (EShell *shell, /* It would be nice to insensitivize the OK button appropriately instead of doing this, but unfortunately we can't do this for the Bonobo control. */ - e_notice (GTK_WINDOW (dialog), GTK_MESSAGE_ERROR, _("Please select a user.")); + e_notice (dialog, GTK_MESSAGE_ERROR, _("Please select a user.")); } *user_email_address_return = user_email_address; @@ -461,7 +461,7 @@ shared_folder_discovery_callback (EStorage *storage, else e_shell_create_view (shell, uri, NULL); } else { - e_notice (parent ? GTK_WINDOW (parent) : NULL, GTK_MESSAGE_ERROR, + e_notice (parent, GTK_MESSAGE_ERROR, _("Could not open shared folder: %s."), e_storage_result_to_string (result)); } @@ -514,7 +514,7 @@ discover_folder (EShell *shell, error: /* FIXME: Be more verbose? */ - e_notice (GTK_WINDOW (parent), GTK_MESSAGE_ERROR, + e_notice (parent, GTK_MESSAGE_ERROR, _("Cannot find the specified shared folder.")); } |