~timo-jyrinki/ubuntu/utopic/rhythmbox/enable_grilo_rhythmbox

« back to all changes in this revision

Viewing changes to metadata/rb-ext-db-key.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-12 12:07:21 UTC
  • mfrom: (1.2.28)
  • Revision ID: package-import@ubuntu.com-20120312120721-ubdep6yl0sgfbr7i
Tags: 2.96-1
* New upstream release.
* Update Build-Depends:
  - Bump libgtk-3-dev to (>= 3.2.0).
  - Drop gir1.2-gtk-3.0, pulled via libgtk-3-dev.
  - Bump libglib2.0-dev (>= 2.28.0).
* Re-add magnatune plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
346
346
/**
347
347
 * rb_ext_db_key_add_info:
348
348
 * @key: a #RBExtDBKey
349
 
 * @field: name of the field to add
 
349
 * @name: name of the field to add
350
350
 * @value: field value
351
351
 *
352
352
 * Adds an information field to the key.
353
353
 */
354
354
void
355
355
rb_ext_db_key_add_info (RBExtDBKey *key,
356
 
                        const char *field,
 
356
                        const char *name,
357
357
                        const char *value)
358
358
{
359
 
        add_to_list (&key->info, NULL, field, value);
 
359
        add_to_list (&key->info, NULL, name, value);
360
360
}
361
361
 
362
362
/**