diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-09-11 23:03:36 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-09-11 23:03:36 +0000 |
commit | f23f4ecf04d8b01ad4990dd2b15c675263590f7b (patch) | |
tree | 340e3e52f4aa5df1448894b7c025a4c433a1cadc /gtk/ui_util.c | |
parent | acdc9439b3761ffac87a7aef738f3d3881bc7347 (diff) | |
download | wireshark-f23f4ecf04d8b01ad4990dd2b15c675263590f7b.tar.gz wireshark-f23f4ecf04d8b01ad4990dd2b15c675263590f7b.tar.bz2 wireshark-f23f4ecf04d8b01ad4990dd2b15c675263590f7b.zip |
Use _WIN32 rather than WIN32 to determine if we're compiling on Win32;
according to Gisle Vanem, WIN32 isn't a built-in in MSVC, but _WIN32 is.
svn path=/trunk/; revision=11972
Diffstat (limited to 'gtk/ui_util.c')
-rw-r--r-- | gtk/ui_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ui_util.c b/gtk/ui_util.c index eebc6923e2..c6917104f1 100644 --- a/gtk/ui_util.c +++ b/gtk/ui_util.c @@ -108,7 +108,7 @@ static gboolean window_geom_load(const gchar *name, window_geometry_t *geom); static void window_icon_realize_cb (GtkWidget *win, gpointer data _U_) { -#ifndef WIN32 +#ifndef _WIN32 static GdkPixmap *icon_pmap = NULL; static GdkBitmap *icon_mask = NULL; GtkStyle *style; |