diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-24 05:19:41 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-24 05:19:41 +0800 |
commit | 4a9702f99b3b02b2e9982e12dea455014e42ae12 (patch) | |
tree | 90280f7ef9cb4c713d910cf333f8c64e386c57f9 /calendar/gui | |
parent | ec0989066db214d2327fbba012e085e4e0099f65 (diff) | |
download | gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.tar gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.tar.gz gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.tar.bz2 gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.tar.lz gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.tar.xz gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.tar.zst gsoc2013-evolution-4a9702f99b3b02b2e9982e12dea455014e42ae12.zip |
Include gnome.h for gettext purposes
2000-08-23 JP Rosevear <jpr@helixcode.com>
* gui/e-day-view-time-item.c: Include gnome.h for gettext purposes
* gui/gnome-cal.c: ditto
* gui/prop.c: #if out some alarm stuff
svn path=/trunk/; revision=4988
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-day-view-time-item.c | 1 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 1 | ||||
-rw-r--r-- | calendar/gui/prop.c | 7 |
3 files changed, 7 insertions, 2 deletions
diff --git a/calendar/gui/e-day-view-time-item.c b/calendar/gui/e-day-view-time-item.c index c2dcf55727..105c85d31e 100644 --- a/calendar/gui/e-day-view-time-item.c +++ b/calendar/gui/e-day-view-time-item.c @@ -28,6 +28,7 @@ */ #include <config.h> +#include <gnome.h> #include <gtk/gtkmenu.h> #include <gtk/gtkradiomenuitem.h> #include "e-day-view-time-item.h" diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 01d84eb472..4713a394fe 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -8,6 +8,7 @@ */ #include <config.h> +#include <gnome.h> #include <unistd.h> #include <signal.h> #include <sys/wait.h> diff --git a/calendar/gui/prop.c b/calendar/gui/prop.c index 2555059af8..f08280b69d 100644 --- a/calendar/gui/prop.c +++ b/calendar/gui/prop.c @@ -70,10 +70,12 @@ static void to_cb_changed (GtkWidget* object, gpointer data); static void snooze_cb_changed (GtkWidget* object, gpointer data); GtkWidget* make_spin_button (int val, int low, int high); +#if 0 void ee_create_ae (GtkTable *table, char *str, CalendarAlarm *alarm, enum AlarmType type, int y, gboolean sens, GtkSignalFunc dirty_func); void ee_store_alarm (CalendarAlarm *alarm, enum AlarmType type); +#endif /* Callback used when the property box is closed -- just sets the prop_win variable to null. */ static int @@ -862,7 +864,8 @@ create_alarm_page (void) FALSE, prop_changed); */ } - + +#if 0 static void prop_store_alarm_default_values (CalendarAlarm* alarm) { @@ -889,10 +892,10 @@ prop_store_alarm_default_values (CalendarAlarm* alarm) gnome_config_set_int ("units", alarm->units); if (alarm->data) gnome_config_set_string ("data", alarm->data); - gnome_config_pop_prefix (); gnome_config_sync (); } +#endif #if 0 static void |