aboutsummaryrefslogtreecommitdiffstats
path: root/column.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-19 03:46:43 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-19 03:46:43 +0000
commit3e1c2030ccb8a650d8a7197fe2d77bacf7507e36 (patch)
tree6ae2fd42dd8a643a3953aa79ce352427b0cceeed /column.c
parentfe8fa11fdaf3a891596fb21375eea0b0625fb3b9 (diff)
move timestamp format options from "View->Options" dialog into
menuitems under "View->Time Display Format". renamed timestamp enum items e.g. from ABSOLUTE to TS_ABSOLUTE, to prevent conflicting definitions with MSVC git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9729 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'column.c')
-rw-r--r--column.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/column.c b/column.c
index d3bf6bcb8c..6396348814 100644
--- a/column.c
+++ b/column.c
@@ -1,7 +1,7 @@
/* column.c
* Routines for handling column preferences
*
- * $Id: column.c,v 1.44 2003/12/09 06:48:38 guy Exp $
+ * $Id: column.c,v 1.45 2004/01/19 03:46:41 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -212,9 +212,9 @@ get_column_longest_string(gint format)
return "0000000";
break;
case COL_CLS_TIME:
- if (timestamp_type == ABSOLUTE)
+ if (timestamp_type == TS_ABSOLUTE)
return "00:00:00.000000";
- else if (timestamp_type == ABSOLUTE_WITH_DATE)
+ else if (timestamp_type == TS_ABSOLUTE_WITH_DATE)
return "0000-00-00 00:00:00.000000";
else
return "0000.000000";