summarylogtreecommitdiffstats
path: root/deprecation_fixes.patch
diff options
context:
space:
mode:
Diffstat (limited to 'deprecation_fixes.patch')
-rw-r--r--deprecation_fixes.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/deprecation_fixes.patch b/deprecation_fixes.patch
deleted file mode 100644
index 44d19af75099..000000000000
--- a/deprecation_fixes.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff --git a/panel-plugin/kbdleds-dialogs.c b/panel-plugin/kbdleds-dialogs.c
-index 7f751f3..b8a56c8 100644
---- a/panel-plugin/kbdleds-dialogs.c
-+++ b/panel-plugin/kbdleds-dialogs.c
-@@ -26,6 +26,7 @@
-
- #include <libxfce4ui/libxfce4ui.h>
- #include <libxfce4panel/xfce-panel-plugin.h>
-+#include <libxfce4panel/xfce-panel-convenience.h>
-
- #include "kbdleds.h"
- #include "kbdleds-dialogs.h"
-diff --git a/panel-plugin/kbdleds.c b/panel-plugin/kbdleds.c
-index 9c78d40..5f655d0 100644
---- a/panel-plugin/kbdleds.c
-+++ b/panel-plugin/kbdleds.c
-@@ -28,6 +28,7 @@
-
- #include <gtk/gtk.h>
- #include <libxfce4util/libxfce4util.h>
-+#include <libxfce4panel/libxfce4panel.h>
- #include <libxfce4panel/xfce-panel-plugin.h>
-
- #include "kbdleds.h"
-@@ -140,7 +141,7 @@ kbdleds_new (XfcePanelPlugin *plugin)
- GtkWidget *label;
-
- /* allocate memory for the plugin structure */
-- kbdleds = panel_slice_new0 (kbdledsPlugin);
-+ kbdleds = g_slice_new0 (kbdledsPlugin);
-
- /* pointer to plugin */
- kbdleds->plugin = plugin;
-@@ -187,7 +188,7 @@ kbdleds_free (XfcePanelPlugin *plugin,
- //g_free (kbdleds->setting1);
-
- /* free the plugin structure */
-- panel_slice_free (kbdledsPlugin, kbdleds);
-+ g_slice_free (kbdledsPlugin, kbdleds);
-
- /* free the timeout */
- if (timeoutId) {