change it to "Seconds Since Epoch (1970-01-01): 1234567890.123456"

svn path=/trunk/; revision=20079
This commit is contained in:
Ulf Lamping 2006-12-09 09:32:21 +00:00
parent aacf309f42
commit fbcd16a443
1 changed files with 2 additions and 2 deletions

View File

@ -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/<separator>", NULL, NULL, 0, "<Separator>", 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;