aboutsummaryrefslogtreecommitdiffstats
path: root/color_filters.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-01-16 01:07:52 +0000
committerGuy Harris <guy@alum.mit.edu>2012-01-16 01:07:52 +0000
commitd7b2aad04325ace029748145dc0584569ad01955 (patch)
tree0a50bf94625d8238c29f5e96187eb2c991292774 /color_filters.c
parent624de2e37f7cd61af7ecb1b6c96b60bc87624959 (diff)
Move some headers for UI stuff, and the alert_box.c UI-specific file, to
the ui directory. (Perhaps some other files that would be used by all flavors of Wireshark, for any GUI toolkit or for someting such as ncurses, and not for any command-line tool such as TShark, should be moved there as well.) Shuffle some #includes to put the "ui/XXX.h" includes together. svn path=/trunk/; revision=40529
Diffstat (limited to 'color_filters.c')
-rw-r--r--color_filters.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/color_filters.c b/color_filters.c
index 2a8a0cbdd2..bd6abfbd68 100644
--- a/color_filters.c
+++ b/color_filters.c
@@ -43,10 +43,11 @@
#include "color_filters.h"
#include "file.h"
#include <epan/dfilter/dfilter.h>
-#include "simple_dialog.h"
-#include "ui_util.h"
#include <epan/prefs.h>
+#include "ui/simple_dialog.h"
+#include "ui/ui_util.h"
+
#define RED_COMPONENT(x) (guint16) (((((x) >> 16) & 0xff) * 65535 / 255))
#define GREEN_COMPONENT(x) (guint16) (((((x) >> 8) & 0xff) * 65535 / 255))
#define BLUE_COMPONENT(x) (guint16) ( (((x) & 0xff) * 65535 / 255))