Add GLib.TypeModule parameter to plugins
authorPhilipp Zabel <philipp.zabel@gmail.com>
Sun, 20 Jun 2010 15:42:21 +0000 (17:42 +0200)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Wed, 14 Jul 2010 21:34:08 +0000 (23:34 +0200)
src/plugins/catalog-plugin.vala
src/plugins/google-plugin.vala
src/plugins/imdb-plugin.vala
src/plugins/moviepilot-plugin.vala

index e562a24..3616e34 100644 (file)
@@ -343,7 +343,7 @@ class CatalogSource : MovieSource {
 }
 
 [ModuleInit]
-public Type register_plugin () {
+public Type register_plugin (TypeModule module) {
        // types are registered automatically
        return typeof (CatalogPlugin);
 }
index d02b7a8..abc0ef3 100644 (file)
@@ -299,7 +299,7 @@ class GoogleSource : MovieSource {
 }
 
 [ModuleInit]
-public Type register_plugin () {
+public Type register_plugin (TypeModule module) {
        // types are registered automatically
        return typeof (GooglePlugin);
 }
index a15b05b..64d8bb3 100644 (file)
@@ -235,7 +235,7 @@ class IMDBSource : MovieSource {
 }
 
 [ModuleInit]
-public Type register_plugin () {
+public Type register_plugin (TypeModule module) {
        // types are registered automatically
        return typeof (IMDbPlugin);
 }
index b4baa65..44f5bf0 100644 (file)
@@ -175,7 +175,7 @@ class MoviePilotSource : MovieSource {
 }
 
 [ModuleInit]
-public Type register_plugin () {
+public Type register_plugin (TypeModule module) {
        // types are registered automatically
        return typeof (MoviePilotPlugin);
 }