summaryrefslogtreecommitdiff
path: root/src/plugins/external
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2011-07-16 13:39:01 +0200
committerJens Georg <mail@jensge.org>2011-07-21 23:37:51 +0200
commit5f00fc40bb7b94d2109286d93efd913e06bedbd1 (patch)
treedf0da83badcb2df1896541b3f57e8e1bf047c852 /src/plugins/external
parent191396b10a1219f67064664f7a01e9d56d0c6b50 (diff)
downloadrygel-5f00fc40bb7b94d2109286d93efd913e06bedbd1.tar.gz
all: Adapt to upcoming changes in Vala 0.14
Diffstat (limited to 'src/plugins/external')
-rw-r--r--src/plugins/external/rygel-external-plugin-factory.vala14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/external/rygel-external-plugin-factory.vala b/src/plugins/external/rygel-external-plugin-factory.vala
index cceb77d4..88647540 100644
--- a/src/plugins/external/rygel-external-plugin-factory.vala
+++ b/src/plugins/external/rygel-external-plugin-factory.vala
@@ -41,9 +41,9 @@ public class Rygel.External.PluginFactory {
private const string SERVICE_PREFIX = "org.gnome.UPnP.MediaServer2.";
private const string GRILO_UPNP_PREFIX = SERVICE_PREFIX + "grl_upnp";
- DBusObject dbus_obj;
- PluginLoader loader;
- IconFactory icon_factory;
+ FreeDesktop.DBusObject dbus_obj;
+ PluginLoader loader;
+ IconFactory icon_factory;
public PluginFactory (PluginLoader loader) throws IOError, DBusError {
this.icon_factory = new IconFactory ();
@@ -84,10 +84,10 @@ public class Rygel.External.PluginFactory {
this.dbus_obj.name_owner_changed.connect (this.name_owner_changed);
}
- private void name_owner_changed (DBusObject dbus_obj,
- string name,
- string old_owner,
- string new_owner) {
+ private void name_owner_changed (FreeDesktop.DBusObject dbus_obj,
+ string name,
+ string old_owner,
+ string new_owner) {
var plugin = this.loader.get_plugin_by_name (name);
if (plugin != null) {