aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2002-10-09 01:02:08 +0800
committerJP Rosevear <jpr@src.gnome.org>2002-10-09 01:02:08 +0800
commit00c1d84f673924046b9eecf478c6ec5f87ab3b18 (patch)
tree02ebab9cca4ff5daaf6cce54bfd676976f46348f /calendar/gui/e-week-view.c
parent6bb5112aa5cd794c7ac79459dc84f01b3966e060 (diff)
downloadgsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.tar
gsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.tar.gz
gsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.tar.bz2
gsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.tar.lz
gsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.tar.xz
gsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.tar.zst
gsoc2013-evolution-00c1d84f673924046b9eecf478c6ec5f87ab3b18.zip
set the 24 hour format initially
2002-10-08 JP Rosevear <jpr@ximian.com> * gui/dialogs/cal-prefs-dialog.c (cal_prefs_dialog_create_time_edit): set the 24 hour format initially 2002-10-08 JP Rosevear <jpr@ximian.com> * gui/e-week-view.c: remove pilot settings from contextual menu * gui/e-day-view.c: ditto svn path=/trunk/; revision=18351
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r--calendar/gui/e-week-view.c28
1 files changed, 1 insertions, 27 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index 084d33c414..66ddc9a32e 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -205,8 +205,6 @@ static void e_week_view_on_publish (GtkWidget *widget,
gpointer data);
static void e_week_view_on_settings (GtkWidget *widget,
gpointer data);
-static void e_week_view_on_pilot_settings (GtkWidget *widget,
- gpointer data);
static void e_week_view_on_delete_occurrence (GtkWidget *widget,
gpointer data);
static void e_week_view_on_delete_appointment (GtkWidget *widget,
@@ -3538,8 +3536,7 @@ static EPopupMenu main_items [] = {
E_POPUP_SEPARATOR,
- E_POPUP_ITEM (N_("_Configure..."), e_week_view_on_settings, 0),
- E_POPUP_ITEM (N_("_Configure Pilot..."), e_week_view_on_pilot_settings, 0),
+ E_POPUP_ITEM (N_("_Settings..."), e_week_view_on_settings, 0),
E_POPUP_TERMINATOR
};
@@ -3879,29 +3876,6 @@ e_week_view_on_settings (GtkWidget *widget, gpointer data)
}
static void
-e_week_view_on_pilot_settings (GtkWidget *widget, gpointer data)
-{
- char *args[] = {
- "gpilotd-control-applet",
- NULL
- };
- int pid;
-
- args[0] = gnome_is_program_in_path ("gpilotd-control-applet");
- if (!args[0]) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
- _("The GNOME Pilot tools do not appear to be installed on this system."));
- return;
- }
-
- pid = gnome_execute_async (NULL, 4, args);
- if (pid == -1)
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, _("Error executing %s."), args[0]);
-
- g_free (args[0]);
-}
-
-static void
e_week_view_on_delete_occurrence (GtkWidget *widget, gpointer data)
{
EWeekView *week_view;