diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2008-04-13 03:32:24 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2008-04-13 03:32:24 +0000 |
commit | 644a474c95cbfc18200e89cff906cd5fad962038 (patch) | |
tree | a6bb135cc85bec3f3c15a7bb5ea4d93d38975123 /gtk/sctp_graph_dlg.c | |
parent | 8e3e8b588f6a729dae0fa4d0792cf8ed1516eb7e (diff) | |
download | wireshark-644a474c95cbfc18200e89cff906cd5fad962038.tar.gz wireshark-644a474c95cbfc18200e89cff906cd5fad962038.tar.bz2 wireshark-644a474c95cbfc18200e89cff906cd5fad962038.zip |
sort #includes by directories
svn path=/trunk/; revision=24969
Diffstat (limited to 'gtk/sctp_graph_dlg.c')
-rw-r--r-- | gtk/sctp_graph_dlg.c | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/gtk/sctp_graph_dlg.c b/gtk/sctp_graph_dlg.c index eaa74ebb7b..f16bac1abb 100644 --- a/gtk/sctp_graph_dlg.c +++ b/gtk/sctp_graph_dlg.c @@ -25,24 +25,26 @@ #ifdef HAVE_CONFIG_H # include <config.h> #endif - - -#include <gtk/gtk.h> -#include <gdk/gdk.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> -#include "globals.h" + +#include <gtk/gtk.h> + #include "epan/filesystem.h" -#include "../color.h" -#include "dlg_utils.h" -#include "ui_util.h" -#include "main.h" -#include "simple_dialog.h" -#include "sctp_stat.h" #include <epan/strutil.h> +#include "../globals.h" +#include "../color.h" +#include "../ui_util.h" +#include "../simple_dialog.h" + +#include "gtk/dlg_utils.h" +#include "gtk/main.h" +#include "gtk/sctp_stat.h" + + #define DEFAULT_PIXELS_PER_TICK 2 #define MAX_PIXELS_PER_TICK 4 #define AUTO_MAX_YSCALE 0 |