+ * calendar/pcs/cal-backend.c (cal_backend_add_cal): Return nothing
+ for a 'void' function. + * folder-browser-factory.c (control_activate): Remove "File->mail" + menuitem. + * e-shell-view-menu.c (command_run_bugbuddy): New function; allows + users to submit a bug. svn path=/trunk/; revision=2948
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2000-05-09 Matt Loper <matt@helixcode.com>
|
||||
|
||||
* calendar/pcs/cal-backend.c (cal_backend_add_cal): Return nothing
|
||||
for a 'void' function.
|
||||
|
||||
2000-05-08 Christopher James Lahey <clahey@helixcode.com>
|
||||
|
||||
* widget/e-text/e-text.c, widgets/e-text/e-text.h: Added an
|
||||
|
||||
@ -134,7 +134,7 @@ cal_backend_add_cal (CalBackend *backend, Cal *cal)
|
||||
g_return_if_fail (IS_CAL_BACKEND (backend));
|
||||
|
||||
g_assert (CLASS (backend)->add_cal != NULL);
|
||||
return (* CLASS (backend)->add_cal) (backend, cal);
|
||||
(* CLASS (backend)->add_cal) (backend, cal);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
2000-05-09 Matt Loper <matt@helixcode.com>
|
||||
|
||||
* folder-browser-factory.c (control_activate): Remove "File->mail"
|
||||
menuitem.
|
||||
|
||||
* mail-config.c (mail_config_druid): Fill in "blah blah blah".
|
||||
|
||||
2000-05-09 Dan Winship <danw@helixcode.com>
|
||||
|
||||
@ -141,14 +141,10 @@ control_activate (BonoboControl *control, BonoboUIHandler *uih)
|
||||
|
||||
folder_browser = bonobo_control_get_widget (control);
|
||||
|
||||
bonobo_ui_handler_menu_new_item (uih, "/File/Mail", N_("_Mail"),
|
||||
NULL, -1,
|
||||
BONOBO_UI_HANDLER_PIXMAP_NONE, NULL,
|
||||
0, 0, send_msg, NULL);
|
||||
|
||||
bonobo_ui_handler_menu_new_item (uih, "/Tools/Expunge", N_("_Expunge"),
|
||||
NULL, -1,
|
||||
BONOBO_UI_HANDLER_PIXMAP_STOCK, GNOME_STOCK_PIXMAP_TRASH,
|
||||
BONOBO_UI_HANDLER_PIXMAP_STOCK,
|
||||
GNOME_STOCK_PIXMAP_TRASH,
|
||||
0, 0, expunge_folder, folder_browser);
|
||||
|
||||
toolbar = gtk_toolbar_new (GTK_ORIENTATION_HORIZONTAL,
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
2000-05-09 Matt Loper <matt@helixcode.com>
|
||||
|
||||
* e-shell-view-menu.c (command_run_bugbuddy): New function; allows
|
||||
users to submit a bug.
|
||||
|
||||
2000-05-09 Ettore Perazzoli <ettore@helixcode.com>
|
||||
|
||||
* e-shell.c (e_shell_new_view): Display the specified @uri in the
|
||||
|
||||
@ -43,9 +43,19 @@ command_quit (GtkWidget *widget,
|
||||
e_shell_quit (shell);
|
||||
}
|
||||
|
||||
static void
|
||||
command_run_bugbuddy (GtkWidget *widget, gpointer data)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Unimplemented commands. */
|
||||
|
||||
|
||||
|
||||
#define DEFINE_UNIMPLEMENTED(func) \
|
||||
static void \
|
||||
func (GtkWidget *widget, gpointer data) \
|
||||
@ -176,6 +186,13 @@ static GnomeUIInfo menu_actions [] = {
|
||||
GNOMEUIINFO_END
|
||||
};
|
||||
|
||||
static GnomeUIInfo menu_help [] = {
|
||||
{ GNOME_APP_UI_ITEM, N_("_Submit bug"),
|
||||
N_("Submit bug-report via bug-buddy"), command_run_bugbuddy, NULL,
|
||||
NULL, 0, 0, 'n', GDK_CONTROL_MASK | GDK_SHIFT_MASK },
|
||||
GNOMEUIINFO_END
|
||||
};
|
||||
|
||||
|
||||
/* Menu bar. */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user