rygel r89 - in trunk: . src



Author: zeeshanak
Date: Tue Oct 28 21:00:00 2008
New Revision: 89
URL: http://svn.gnome.org/viewvc/rygel?rev=89&view=rev

Log:
Argument 'value' of query_variable signal should now be declared 'ref'.

Modified:
   trunk/ChangeLog
   trunk/src/gupnp-content-directory.vala

Modified: trunk/src/gupnp-content-directory.vala
==============================================================================
--- trunk/src/gupnp-content-directory.vala	(original)
+++ trunk/src/gupnp-content-directory.vala	Tue Oct 28 21:00:00 2008
@@ -157,7 +157,7 @@
     /* Query GetSystemUpdateID */
     private void query_system_update_id (ContentDirectory content_dir,
                                          string variable,
-                                         GLib.Value value) {
+                                         ref GLib.Value value) {
         /* Set action return arguments */
         value.init (typeof (uint32));
         value.set_uint (this.system_update_id);
@@ -175,7 +175,7 @@
     /* Query SearchCapabilities */
     private void query_search_capabilities (ContentDirectory content_dir,
                                             string variable,
-                                            GLib.Value value) {
+                                            ref GLib.Value value) {
         /* Set action return arguments */
         value.init (typeof (string));
         value.set_string ("");
@@ -193,7 +193,7 @@
     /* Query SortCapabilities */
     private void query_sort_capabilities (ContentDirectory content_dir,
                                           string variable,
-                                          GLib.Value value) {
+                                          ref GLib.Value value) {
         /* Set action return arguments */
         value.init (typeof (string));
         value.set_string ("");
@@ -211,7 +211,7 @@
     /* Query FeatureList */
     private void query_feature_list (ContentDirectory content_dir,
                                      string variable,
-                                     GLib.Value value) {
+                                     ref GLib.Value value) {
         /* Set action return arguments */
         value.init (typeof (string));
         value.set_string (this.feature_list);



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