1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
--- gxine-0.5.1.orig/src/desktop_integration.c
+++ gxine-0.5.1/src/desktop_integration.c
@@ -355,7 +355,6 @@
"StartupNotify=true\n"
"Categories=GTK;Application;AudioVideo;\n"
"MimeType=",
- icondir,
bindir);
/*
--- gxine-0.5.1.orig/src/ui.c
+++ gxine-0.5.1/src/ui.c
@@ -781,6 +781,9 @@
ui_std_icon (ifactory, GXINE_MEDIA_SPEAKER_MUTE, "nospeaker.png");
ui_std_icon (ifactory, GXINE_MEDIA_MARK, "/gxine.png");
ui_std_icon (ifactory, GXINE_LOGO, "/gxine.png");
+#ifdef WITH_DEPRECATED
+ ui_std_icon (ifactory, "gxine-logo", "/gxine.png");
+#endif
gtk_icon_factory_add_default (ifactory);
}
--- gxine-0.5.1.orig/src/ui.h
+++ gxine-0.5.1/src/ui.h
@@ -29,7 +29,7 @@
#define GXINE_MEDIA_PLAYLIST "gxine-media-playlist"
#define GXINE_MEDIA_SPEAKER "gxine-media-speaker"
#define GXINE_MEDIA_SPEAKER_MUTE "gxine-media-speaker-mute"
-#define GXINE_LOGO "gxine-logo"
+#define GXINE_LOGO "gxine"
#define GXINE_MEDIA_MARK "gxine-media-mark"
/* UI status attributes */
|