diff options
author | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2013-06-19 15:22:56 +0000 |
---|---|---|
committer | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2013-06-19 15:22:56 +0000 |
commit | 909d2eb3090c773d271097d2c9dc5e164aa2f03b (patch) | |
tree | 23e926d38c1b4cf03da4c2adaa2ddc5dac5810ce /image | |
parent | 54d58d66f71496a23c948144e1ad9fccad9fe39a (diff) | |
download | wireshark-909d2eb3090c773d271097d2c9dc5e164aa2f03b.tar.gz wireshark-909d2eb3090c773d271097d2c9dc5e164aa2f03b.tar.bz2 wireshark-909d2eb3090c773d271097d2c9dc5e164aa2f03b.zip |
Allow for column headers not to be printed in order to make it possible to export packets as plain text in a format that could then have a chance of being imported again (assuming other factors such as packet bytes were printed, etc.) in order to recover the original pcap file.
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1636
svn path=/trunk/; revision=50036
Diffstat (limited to 'image')
-rw-r--r-- | image/file_dlg_win32.rc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/image/file_dlg_win32.rc b/image/file_dlg_win32.rc index bb8c7b2674..32320cae06 100644 --- a/image/file_dlg_win32.rc +++ b/image/file_dlg_win32.rc @@ -128,13 +128,13 @@ FONT 8, "MS Shell Dlg" LTEXT "0", EWFD_RANGE_DISP, 282, 72, 41, 8, SS_RIGHT LTEXT "0", EWFD_IGNORED_DISP, 282, 84, 41, 8, SS_RIGHT - GROUPBOX "Packet Format", EWFD_PKT_FORMAT_GB, 344, 0, 118, 102 CONTROL "Packet summary line", EWFD_PKT_SUMMARY_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 15, 84, 10 - CONTROL "Packet details:", EWFD_PKT_DETAIL_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 27, 95, 10 - COMBOBOX EWFD_PKT_DETAIL_COMBO, 366, 39, 74, 45, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP - CONTROL "Packet Bytes", EWFD_PKT_BYTES_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 56, 80, 10 - CONTROL "Each packet on a new page", EWFD_PKT_NEW_PAGE_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 70, 106, 10 + CONTROL "Include column headings", EWFD_COL_HEADINGS_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 362, 27, 94, 10 + CONTROL "Packet details:", EWFD_PKT_DETAIL_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 39, 95, 10 + COMBOBOX EWFD_PKT_DETAIL_COMBO, 362, 51, 74, 45, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + CONTROL "Packet Bytes", EWFD_PKT_BYTES_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 68, 80, 10 + CONTROL "Each packet on a new page", EWFD_PKT_NEW_PAGE_CB, "Button", BS_AUTOCHECKBOX | WS_TABSTOP, 350, 80, 106, 10 } |