diff options
author | Jörg Mayer <jmayer@loplof.de> | 2005-08-20 14:02:00 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2005-08-20 14:02:00 +0000 |
commit | 0edcc8920eb4e0483f1c7886f07cce465bae2260 (patch) | |
tree | 17d7a1bddeab8630608cf30bc38356ff5ad4495a /gtk/tcp_graph.c | |
parent | 4fd9fcc63956b732bfde38cc8ec6622b51ba7e06 (diff) | |
download | wireshark-0edcc8920eb4e0483f1c7886f07cce465bae2260.tar.gz wireshark-0edcc8920eb4e0483f1c7886f07cce465bae2260.tar.bz2 wireshark-0edcc8920eb4e0483f1c7886f07cce465bae2260.zip |
- Declare some functions static
- Add plugins_dlg.h
- Include .h files in their respective .c files
- Include .h and remove extern declarations in .c files
- set eol-style and keywords on gui_utils.[hc]
svn path=/trunk/; revision=15471
Diffstat (limited to 'gtk/tcp_graph.c')
-rw-r--r-- | gtk/tcp_graph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/tcp_graph.c b/gtk/tcp_graph.c index 11c5f98bad..a414c51135 100644 --- a/gtk/tcp_graph.c +++ b/gtk/tcp_graph.c @@ -494,7 +494,7 @@ static char helptext[] = "; #endif -void tcp_graph_cb (GtkWidget *w _U_, gpointer data, guint callback_action /*graph_type*/ _U_) +static void tcp_graph_cb (GtkWidget *w _U_, gpointer data, guint callback_action /*graph_type*/ _U_) { struct segment current; struct graph *g; @@ -4041,7 +4041,7 @@ static int rint (double x) #endif -gboolean tcp_graph_selected_packet_enabled(frame_data *current_frame, epan_dissect_t *edt) +static gboolean tcp_graph_selected_packet_enabled(frame_data *current_frame, epan_dissect_t *edt) { return current_frame != NULL ? (edt->pi.ipproto == IP_PROTO_TCP) : FALSE; } |