[gnome-flashback] bluetooth-applet: remove



commit 6c2f2a05cbd1cab2db7faedaf6ea04f9bea7f958
Author: Alberts Muktupāvels <alberts muktupavels gmail com>
Date:   Tue Dec 24 17:58:24 2019 +0200

    bluetooth-applet: remove

 configure.ac                                       |   7 -
 data/schemas/org.gnome.gnome-flashback.gschema.xml |   6 -
 gnome-flashback/Makefile.am                        |   2 -
 gnome-flashback/gf-application.c                   |   4 -
 gnome-flashback/libbluetooth-applet/Makefile.am    |  35 --
 .../libbluetooth-applet/gf-bluetooth-applet.c      | 475 ---------------------
 .../libbluetooth-applet/gf-bluetooth-applet.h      |  33 --
 po/POTFILES.in                                     |   1 -
 8 files changed, 563 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 623e0b7..c5bab88 100644
--- a/configure.ac
+++ b/configure.ac
@@ -139,12 +139,6 @@ PKG_CHECK_MODULES([AUTOMOUNT_MANAGER], [
   gsettings-desktop-schemas >= $GSETTINGS_DESKTOP_SCHEMAS_REQUIRED
 ])
 
-PKG_CHECK_MODULES([BLUETOOTH_APPLET], [
-  gio-unix-2.0 >= $GLIB_REQUIRED
-  gtk+-3.0 >= $GTK_REQUIRED
-  gnome-bluetooth-1.0
-])
-
 PKG_CHECK_MODULES([CLIPBOARD], [
   glib-2.0 >= $GLIB_REQUIRED
   gtk+-3.0 >= $GTK_REQUIRED
@@ -409,7 +403,6 @@ AC_CONFIG_FILES([
   gnome-flashback/liba11y-keyboard/Makefile
   gnome-flashback/libaudio-device-selection/Makefile
   gnome-flashback/libautomount-manager/Makefile
-  gnome-flashback/libbluetooth-applet/Makefile
   gnome-flashback/libcommon/Makefile
   gnome-flashback/libclipboard/Makefile
   gnome-flashback/libdesktop/Makefile
diff --git a/data/schemas/org.gnome.gnome-flashback.gschema.xml 
b/data/schemas/org.gnome.gnome-flashback.gschema.xml
index ecda05e..28dac3a 100644
--- a/data/schemas/org.gnome.gnome-flashback.gschema.xml
+++ b/data/schemas/org.gnome.gnome-flashback.gschema.xml
@@ -17,12 +17,6 @@
       <description>If set to true, then GNOME Flashback application will be used to automount removable 
media.</description>
     </key>
 
-    <key name="bluetooth-applet" type="b">
-      <default>true</default>
-      <summary>Bluetooth applet</summary>
-      <description>If set to true, then GNOME Flashback application will be used to show a Bluetooth 
applet.</description>
-    </key>
-
     <key name="clipboard" type="b">
       <default>true</default>
       <summary>Clipboard</summary>
diff --git a/gnome-flashback/Makefile.am b/gnome-flashback/Makefile.am
index f6e142c..8c89140 100644
--- a/gnome-flashback/Makefile.am
+++ b/gnome-flashback/Makefile.am
@@ -4,7 +4,6 @@ SUBDIRS = \
        liba11y-keyboard \
        libaudio-device-selection \
        libautomount-manager \
-       libbluetooth-applet \
        libcommon \
        libclipboard \
        libdesktop \
@@ -65,7 +64,6 @@ gnome_flashback_LDADD = \
        $(top_builddir)/gnome-flashback/liba11y-keyboard/liba11y-keyboard.la \
        $(top_builddir)/gnome-flashback/libaudio-device-selection/libaudio-device-selection.la \
        $(top_builddir)/gnome-flashback/libautomount-manager/libautomount-manager.la \
-       $(top_builddir)/gnome-flashback/libbluetooth-applet/libbluetooth-applet.la \
        $(top_builddir)/gnome-flashback/libclipboard/libclipboard.la \
        $(top_builddir)/gnome-flashback/libdesktop/libdesktop.la \
        $(top_builddir)/gnome-flashback/libend-session-dialog/libend-session-dialog.la \
diff --git a/gnome-flashback/gf-application.c b/gnome-flashback/gf-application.c
index 89d3399..1e9f7dd 100644
--- a/gnome-flashback/gf-application.c
+++ b/gnome-flashback/gf-application.c
@@ -26,7 +26,6 @@
 #include "liba11y-keyboard/gf-a11y-keyboard.h"
 #include "libaudio-device-selection/gf-audio-device-selection.h"
 #include "libautomount-manager/gsd-automount-manager.h"
-#include "libbluetooth-applet/gf-bluetooth-applet.h"
 #include "libclipboard/gf-clipboard.h"
 #include "libdesktop/gf-desktop.h"
 #include "libend-session-dialog/gf-end-session-dialog.h"
@@ -62,7 +61,6 @@ struct _GfApplication
   FlashbackShell          *shell;
   GfA11yKeyboard          *a11y_keyboard;
   GfAudioDeviceSelection  *audio_device_selection;
-  GfBluetoothApplet       *bluetooth;
   GfClipboard             *clipboard;
   GfDesktop               *desktop;
   GfEndSessionDialog      *dialog;
@@ -220,7 +218,6 @@ settings_changed (GSettings   *settings,
   SETTING_CHANGED (shell, "shell", flashback_shell_new)
   SETTING_CHANGED (a11y_keyboard, "a11y-keyboard", gf_a11y_keyboard_new)
   SETTING_CHANGED (audio_device_selection, "audio-device-selection", gf_audio_device_selection_new)
-  SETTING_CHANGED (bluetooth, "bluetooth-applet", gf_bluetooth_applet_new)
   SETTING_CHANGED (desktop, "desktop", gf_desktop_new)
   SETTING_CHANGED (clipboard, "clipboard", gf_clipboard_new)
   SETTING_CHANGED (dialog, "end-session-dialog", gf_end_session_dialog_new)
@@ -268,7 +265,6 @@ gf_application_dispose (GObject *object)
   g_clear_object (&application->shell);
   g_clear_object (&application->a11y_keyboard);
   g_clear_object (&application->audio_device_selection);
-  g_clear_object (&application->bluetooth);
   g_clear_object (&application->desktop);
   g_clear_object (&application->clipboard);
   g_clear_object (&application->dialog);
diff --git a/po/POTFILES.in b/po/POTFILES.in
index c83dc18..687af59 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -20,7 +20,6 @@ gnome-flashback/liba11y-keyboard/gf-a11y-keyboard.c
 gnome-flashback/libaudio-device-selection/gf-audio-device-selection-dialog.c
 gnome-flashback/libautomount-manager/gsd-automount-manager.c
 gnome-flashback/libautomount-manager/gsd-autorun.c
-gnome-flashback/libbluetooth-applet/gf-bluetooth-applet.c
 gnome-flashback/libdesktop/gf-create-folder-dialog.c
 gnome-flashback/libdesktop/gf-desktop-window.c
 gnome-flashback/libdesktop/gf-home-icon.c


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]