aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/goto.c
diff options
context:
space:
mode:
authorTomas Ogren <stric@ing.umu.se>1999-02-16 06:40:43 +0800
committerTomas Ă–gren <stric@src.gnome.org>1999-02-16 06:40:43 +0800
commite701ad14c74a29ce2dfb033b36a08706fe7aee9c (patch)
tree9aff05a242b9773c73d268ee4e87ecb17f967475 /calendar/gui/goto.c
parent77a4da633987f49c8b9b4cb9c9ac8e5e3f82c778 (diff)
downloadgsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.tar
gsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.tar.gz
gsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.tar.bz2
gsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.tar.lz
gsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.tar.xz
gsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.tar.zst
gsoc2013-evolution-e701ad14c74a29ce2dfb033b36a08706fe7aee9c.zip
Made a private copy of what localtime() returns, to be able to keep the
1999-02-15 Tomas Ogren <stric@ing.umu.se> * goto.c: Made a private copy of what localtime() returns, to be able to keep the data after more calls to localtime(). svn path=/trunk/; revision=669
Diffstat (limited to 'calendar/gui/goto.c')
-rw-r--r--calendar/gui/goto.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/goto.c b/calendar/gui/goto.c
index 0dd0a3f22e..cc86616d31 100644
--- a/calendar/gui/goto.c
+++ b/calendar/gui/goto.c
@@ -254,12 +254,12 @@ goto_dialog (GnomeCalendar *gcal)
GtkWidget *hbox;
GtkWidget *w;
GtkWidget *days;
- struct tm *tm;
+ struct tm tm;
gnome_calendar = gcal;
current_index = -1;
- tm = localtime (&gnome_calendar->current_display);
+ memcpy(&tm, localtime (&gnome_calendar->current_display), sizeof(tm));
goto_win = gnome_dialog_new (_("Go to date"),
GNOME_STOCK_BUTTON_CANCEL,
@@ -282,17 +282,17 @@ goto_dialog (GnomeCalendar *gcal)
* month_item to be created.
*/
- days = create_days (tm->tm_mday, tm->tm_mon, tm->tm_year + 1900);
+ days = create_days (tm.tm_mday, tm.tm_mon, tm.tm_year + 1900);
/* Year */
- w = create_year (tm->tm_year + 1900);
+ w = create_year (tm.tm_year + 1900);
gtk_box_pack_start (GTK_BOX (vbox), w, FALSE, FALSE, 0);
gtk_widget_show (w);
/* Month */
- w = create_months (tm->tm_mon);
+ w = create_months (tm.tm_mon);
gtk_box_pack_start (GTK_BOX (vbox), w, FALSE, FALSE, 0);
gtk_widget_show (w);