aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-12-12 12:57:12 -0800
committerGuy Harris <guy@alum.mit.edu>2016-12-12 20:58:09 +0000
commit334485f65b1f35b193b18780cb7c166f62e1ffc9 (patch)
tree40344345af037ef225f5ed02bb96a6e2490ea5a2 /file.c
parenteb1307a099ad1ed77cc70d501ab33284fcdb444d (diff)
Get rid of some GTK+-only routines in file.c.
Just directly call the packet_list_select_ routine from the GTK+ code. Change-Id: I9146fb968c407d6186b146a86aa34678765f7352 Reviewed-on: https://code.wireshark.org/review/19225 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'file.c')
-rw-r--r--file.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/file.c b/file.c
index ef593b4a3e..2f7aa518ee 100644
--- a/file.c
+++ b/file.c
@@ -3612,23 +3612,6 @@ cf_goto_frame(capture_file *cf, guint fnumber)
return TRUE; /* we got to that packet */
}
-gboolean
-cf_goto_top_frame(void)
-{
- /* Find and select */
- packet_list_select_first_row();
- return TRUE; /* we got to that packet */
-}
-
-/* GTK+ only */
-gboolean
-cf_goto_bottom_frame(void)
-{
- /* Find and select */
- packet_list_select_last_row();
- return TRUE; /* we got to that packet */
-}
-
/*
* Go to frame specified by currently selected protocol tree item.
*/