[rhythmbox] fix some g-ir-scanner warnings



commit bcb2e2edc538d66046e05df28e2162f105690273
Author: Jonathan Matthew <jonathan d14n org>
Date:   Sun Feb 5 21:09:58 2012 +1000

    fix some g-ir-scanner warnings

 lib/rb-async-copy.h      |    4 ++--
 metadata/rb-ext-db-key.c |    6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/lib/rb-async-copy.h b/lib/rb-async-copy.h
index 2ad75f8..90a503a 100644
--- a/lib/rb-async-copy.h
+++ b/lib/rb-async-copy.h
@@ -69,8 +69,8 @@ void			rb_async_copy_set_progress 	(RBAsyncCopy *copy,
 GError *		rb_async_copy_get_error		(RBAsyncCopy *copy);
 
 void			rb_async_copy_start		(RBAsyncCopy *copy,
-							 const char *src_uri,
-							 const char *dest_uri,
+							 const char *src,
+							 const char *dest,
 							 RBAsyncCopyCallback callback,
 							 gpointer user_data,
 							 GDestroyNotify destroy_data);
diff --git a/metadata/rb-ext-db-key.c b/metadata/rb-ext-db-key.c
index 7d89a57..2aec950 100644
--- a/metadata/rb-ext-db-key.c
+++ b/metadata/rb-ext-db-key.c
@@ -346,17 +346,17 @@ rb_ext_db_key_get_field_values (RBExtDBKey *key, const char *field)
 /**
  * rb_ext_db_key_add_info:
  * @key: a #RBExtDBKey
- * @field: name of the field to add
+ * @name: name of the field to add
  * @value: field value
  *
  * Adds an information field to the key.
  */
 void
 rb_ext_db_key_add_info (RBExtDBKey *key,
-			const char *field,
+			const char *name,
 			const char *value)
 {
-	add_to_list (&key->info, NULL, field, value);
+	add_to_list (&key->info, NULL, name, value);
 }
 
 /**



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