tags:

views:

51

answers:

1

I cannot get GTkStatusIcon working in Windows and I get no errors. And I make a call to both gtk_status_icon_set_from_file and gtk_status_icon_new_from_file. Does anyone have any idea what could be causing this? I tried with .ico files and .png and still nothing...

A: 

Do you declare the GtkStatusIcon to be static like this:
static GtkStatusIcon *status_icon = NULL;?
Follow this tutorial and see if it works then.

DoR