summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-support/florence/files/fix-no-atspi-compile.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-gnome/recipes-support/florence/files/fix-no-atspi-compile.patch')
-rw-r--r--meta-gnome/recipes-support/florence/files/fix-no-atspi-compile.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-gnome/recipes-support/florence/files/fix-no-atspi-compile.patch b/meta-gnome/recipes-support/florence/files/fix-no-atspi-compile.patch
deleted file mode 100644
index 0bb5dee80..000000000
--- a/meta-gnome/recipes-support/florence/files/fix-no-atspi-compile.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1diff --git a/src/florence.c b/src/florence.c
2index b27c31b..feadefe 100644
3--- a/src/florence.c
4+++ b/src/florence.c
5@@ -44,12 +44,6 @@
6 /* exit signal */
7 static int flo_exit=FALSE;
8
9-#ifdef ENABLE_AT_SPI2
10-void flo_check_show (struct florence *florence, AtspiAccessible *obj);
11-#else
12-void flo_check_show (struct florence *florence, Accessible *obj);
13-#endif
14-
15 /* Called on destroy event (systray quit or close window) */
16 void flo_destroy (void)
17 {
18@@ -61,6 +55,12 @@ void flo_destroy (void)
19 }
20
21 #ifdef AT_SPI
22+#ifdef ENABLE_AT_SPI2
23+void flo_check_show (struct florence *florence, AtspiAccessible *obj);
24+#else
25+void flo_check_show (struct florence *florence, Accessible *obj);
26+#endif
27+
28 /* Called to destroy the icon */
29 void flo_icon_destroy (GtkWidget *widget, gpointer user_data)
30 {