From fbcd16a44347cef5cf6ad3fb4c4518df9dc8220a Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Sat, 9 Dec 2006 09:32:21 +0000 Subject: [PATCH] change it to "Seconds Since Epoch (1970-01-01): 1234567890.123456" svn path=/trunk/; revision=20079 --- gtk/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/menu.c b/gtk/menu.c index 9558836d94..98db138a05 100644 --- a/gtk/menu.c +++ b/gtk/menu.c @@ -476,7 +476,7 @@ static GtkItemFactoryEntry menu_items[] = 0, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL), ITEM_FACTORY_ENTRY("/View/Time Display Format/Seconds Since Previous Packet: 1.123456", NULL, timestamp_delta_cb, 0, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL), - ITEM_FACTORY_ENTRY("/View/Time Display Format/Seconds Since Epoch Time: 123.123456", NULL, timestamp_epoch_cb, + ITEM_FACTORY_ENTRY("/View/Time Display Format/Seconds Since Epoch (1970-01-01): 1234567890.123456", NULL, timestamp_epoch_cb, 0, "/View/Time Display Format/Date and Time of Day: 1970-01-01 01:02:03.123456", NULL), ITEM_FACTORY_ENTRY("/View/Time Display Format/", NULL, NULL, 0, "", NULL), ITEM_FACTORY_ENTRY("/View/Time Display Format/Automatic (File Format Precision)", NULL, timestamp_auto_cb, @@ -1908,7 +1908,7 @@ menu_recent_read_finished(void) { break; case(TS_EPOCH): menu = gtk_item_factory_get_widget(main_menu_factory, - "/View/Time Display Format/Seconds Since Epoch Time: 123.123456"); + "/View/Time Display Format/Seconds Since Epoch (1970-01-01): 1234567890.123456"); recent.gui_time_format = -1; gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menu), TRUE); break;