- main.c: Do not use gkrellm xpm-icon on win32, gkrellm on windows as an icon of its own that is set via win32-resource.rc
This commit is contained in:
parent
2119506e02
commit
8cddbba126
|
@ -24,7 +24,8 @@
|
|||
#include "gkrellm-sysdeps.h"
|
||||
#include "log-private.h"
|
||||
|
||||
#if GTK_CHECK_VERSION(2,4,0)
|
||||
// GTK+-win32 automatically uses the application-icon
|
||||
#if GTK_CHECK_VERSION(2,4,0) && !defined(WIN32)
|
||||
#include "icon.xpm"
|
||||
#endif
|
||||
|
||||
|
@ -1482,14 +1483,14 @@ static void
|
|||
create_widget_tree()
|
||||
{
|
||||
gchar *title;
|
||||
#if GTK_CHECK_VERSION(2,4,0)
|
||||
#if GTK_CHECK_VERSION(2,4,0) && !defined(WIN32)
|
||||
GdkPixbuf *icon;
|
||||
#endif
|
||||
|
||||
gtree.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
||||
gtk_widget_set_name(gtree.window, PACKAGE);
|
||||
|
||||
#if GTK_CHECK_VERSION(2,4,0)
|
||||
#if GTK_CHECK_VERSION(2,4,0) && !defined(WIN32)
|
||||
icon = gdk_pixbuf_new_from_xpm_data((const gchar **) icon_xpm);
|
||||
gtk_window_set_default_icon(icon);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue