aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-03-26 19:51:33 +0000
committerGerald Combs <gerald@wireshark.org>2013-03-26 19:51:33 +0000
commitd1b87423df7aca95c50e04530316f9b7447f13ff (patch)
treec06a943a3aad63ec61a1e85bdcdf20f721ef93a8 /ui/gtk/Makefile.nmake
parent67ffb10e649188e64cdb58419ffecfba20e19c0d (diff)
More icon updates.
Use the PNG versions of the new application icons. Remove the XPM versions of the Wireshark application and capture icons. To paraphrase Zoidberg, XPMs are bad and we should feel bad. Remove xpm_to_widget_from_parent (which we weren't using and likely won't use in the future). Replace wiki_24.xpm (which was a GNOME or GTK+ stock icon IIRC) with the 16x16 and 24x24 versions emblem-web.png from GNOME icon theme 2.30.3. This version was used specifically because it's GPLv2 and later versions are GPLv3. Update image/README. svn path=/trunk/; revision=48565
Diffstat (limited to 'ui/gtk/Makefile.nmake')
-rw-r--r--ui/gtk/Makefile.nmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/gtk/Makefile.nmake b/ui/gtk/Makefile.nmake
index 571a8fc467..3b9c2fe9a9 100644
--- a/ui/gtk/Makefile.nmake
+++ b/ui/gtk/Makefile.nmake
@@ -73,6 +73,16 @@ layouts.h:
for %n in (1 2 3 4 5 6) do \
gdk-pixbuf-csource --raw --name=layout_%n_pb_data ../../image/layout_%n.png >> $@
+wsicon.h:
+ echo /* This file was automatically generated. DO NOT EDIT. */ > $@
+ echo. $@
+ for %n in (16 24 32 48 64) do \
+ gdk-pixbuf-csource --raw --name=wsicon_%n_pb_data ../../image/wsicon%n.png >> $@
+wsiconcap.h:
+ echo /* This file was automatically generated. DO NOT EDIT. */ > $@
+ echo. $@
+ for %n in (16 24 32 48 64) do \
+ gdk-pixbuf-csource --raw --name=wsiconcap_%n_pb_data ../../image/wsiconcap%n.png >> $@
# The shell script runs slowly, as multiple greps and seds are run
# for each input file; this is especially slow on Windows. Therefore,