diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-04 22:53:49 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-04 22:53:49 +0800 |
commit | 427c7a92282a6ee8def483774f8655648d2e6564 (patch) | |
tree | e120435dfe9d61688df3f77740eeb4562639a2df /shell/e-shortcuts-view.c | |
parent | 317b30ce9e92f0e9c18e4905cd6b8ae1e28b3602 (diff) | |
download | gsoc2013-evolution-427c7a92282a6ee8def483774f8655648d2e6564.tar.gz gsoc2013-evolution-427c7a92282a6ee8def483774f8655648d2e6564.tar.zst gsoc2013-evolution-427c7a92282a6ee8def483774f8655648d2e6564.zip |
Replace gtk_signal_emit() with g_signal_emit(). Likewise. Likewise.
* e-folder-list.c: Replace gtk_signal_emit() with g_signal_emit().
* e-folder.c: Likewise.
* e-shell-folder-selection-dialog.c: Likewise.
* e-shell-folder-title-bar.c: Likewise.
* e-shell-offline-handler.c: Likewise.
* e-shell-view.c: Likewise.
* e-shortcuts-view.c: Likewise.
* e-shortcuts.c: Likewise.
* e-storage-set-view.c: Likewise.
* e-storage-set.c: Likewise.
* e-storage.c: Likewise.
* evolution-activity-client.c: Likewise.
* evolution-folder-selector-button.c: Likewise.
* evolution-storage-listener.c: Likewise.
* evolution-storage-set-view-listener.c: Likewise.
svn path=/trunk/; revision=18524
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r-- | shell/e-shortcuts-view.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index 779a5c55be..87092d91f3 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -141,7 +141,7 @@ hide_shortcut_bar_cb (GtkWidget *widget, shortcut_view = E_SHORTCUTS_VIEW (menu_data->shortcuts_view); - gtk_signal_emit (GTK_OBJECT (shortcut_view), signals[HIDE_REQUESTED]); + g_signal_emit (shortcut_view, signals[HIDE_REQUESTED], 0); } static void @@ -172,7 +172,7 @@ destroy_group_cb (GtkWidget *widget, shortcuts = priv->shortcuts; title = e_utf8_to_locale_string (e_shortcuts_get_group_title ( - shortcuts, menu_data->group_num)); + shortcuts, menu_data->group_num)); question = g_strdup_printf (_("Do you really want to remove group\n" "`%s' from the shortcut bar?"), title); g_free (title); @@ -340,8 +340,8 @@ open_shortcut_helper (ShortcutRightClickMenuData *menu_data, if (shortcut_item == NULL) return; - gtk_signal_emit (GTK_OBJECT (shortcuts_view), signals[ACTIVATE_SHORTCUT], - shortcuts, shortcut_item->uri, in_new_window); + g_signal_emit (shortcuts_view, signals[ACTIVATE_SHORTCUT], 0, + shortcuts, shortcut_item->uri, in_new_window); } static void @@ -414,7 +414,7 @@ static GnomeUIInfo shortcut_right_click_menu_uiinfo[] = { open_shortcut_in_new_window_cb), GNOMEUIINFO_SEPARATOR, GNOMEUIINFO_ITEM_NONE (N_("_Rename"), N_("Rename this shortcut"), - rename_shortcut_cb), + rename_shortcut_cb), GNOMEUIINFO_ITEM_STOCK (N_("Re_move"), N_("Remove this shortcut from the shortcut bar"), remove_shortcut_cb, GTK_STOCK_REMOVE), GNOMEUIINFO_END @@ -517,8 +517,8 @@ item_selected (EShortcutBar *shortcut_bar, if (shortcut_item == NULL) return; - gtk_signal_emit (GTK_OBJECT (shortcuts_view), signals[ACTIVATE_SHORTCUT], - shortcuts, shortcut_item->uri, FALSE); + g_signal_emit (shortcuts_view, signals[ACTIVATE_SHORTCUT], 0, + shortcuts, shortcut_item->uri, FALSE); } static void |