summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Campagna <gcampagna@src.gnome.org>2011-08-16 14:28:53 +0200
committerMatthias Clasen <mclasen@redhat.com>2011-11-15 08:55:53 -0500
commit986afdc0c5c599ff777561fb85233564ab1705a0 (patch)
tree96df4a020dcc48940b138e1a9b6c4f9400c19748
parente6dc843786cd67a0d6e860dc9f2dac89a70e7222 (diff)
downloadgnome-shell-wip/gdbus.tar.gz
Port client side code to GDBuswip/gdbus
This continues the series of patches for GDBus porting, affecting all code that accesses remote DBus objects. This includes modemManager, automount, autorun (for the hotplug sniffer), calendar, network (for nm-applet only), power, scripting (for perf monitor interface) https://bugzilla.gnome.org/show_bug.cgi?id=648651
-rw-r--r--js/ui/status/network.js1
-rw-r--r--js/ui/status/power.js1
2 files changed, 2 insertions, 0 deletions
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index 7265873b3..0cc2b64ea 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -1,6 +1,7 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const ByteArray = imports.byteArray;
const GLib = imports.gi.GLib;
+const Gio = imports.gi.Gio;
const GObject = imports.gi.GObject;
const Lang = imports.lang;
const Mainloop = imports.mainloop;
diff --git a/js/ui/status/power.js b/js/ui/status/power.js
index fa77d552a..ac5f45cf8 100644
--- a/js/ui/status/power.js
+++ b/js/ui/status/power.js
@@ -1,6 +1,7 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const Gio = imports.gi.Gio;
+const GLib = imports.gi.GLib;
const Lang = imports.lang;
const Mainloop = imports.mainloop;
const Shell = imports.gi.Shell;