aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2013-10-14 18:27:17 -0500
committerCharles Kerr <charles.kerr@canonical.com>2013-10-14 18:27:17 -0500
commit46d4ad6f0e470049fee1236e93f2e8f8191da72b (patch)
treec6ff29075c9dda8f1dacfa4808737c2d39f64269 /src
parente15cd36f96ae3108faf50da2c613d4a3e3d44359 (diff)
downloadayatana-indicator-bluetooth-46d4ad6f0e470049fee1236e93f2e8f8191da72b.tar.gz
ayatana-indicator-bluetooth-46d4ad6f0e470049fee1236e93f2e8f8191da72b.tar.bz2
ayatana-indicator-bluetooth-46d4ad6f0e470049fee1236e93f2e8f8191da72b.zip
omit the rfkill killswitch altogether, leaving on/off to bluez via org.bluez.Adapter's Powered property
Diffstat (limited to 'src')
-rw-r--r--src/main.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.vala b/src/main.vala
index caee3b3..828a96b 100644
--- a/src/main.vala
+++ b/src/main.vala
@@ -26,7 +26,7 @@ public static int main (string[] args)
Intl.textdomain (Config.GETTEXT_PACKAGE);
// create the backend
- var bluetooth = new Bluez (new RfKillSwitch ());
+ var bluetooth = new Bluez (null);
// start the service
var service = new Service (bluetooth);