summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMartyn Russell <martyn@lanedo.com>2010-03-09 14:56:30 +0000
committerMartyn Russell <martyn@lanedo.com>2010-03-09 17:43:59 +0000
commit2bb3b104ceb7cc3bce1f1466a2e627170181b3ba (patch)
treef3f11bf978085faf35645a7c01ab06b1244c3b81 /examples
parent9e0ffddbe1d25c430502ffdce326ca34f35d60d7 (diff)
downloadtracker-2bb3b104ceb7cc3bce1f1466a2e627170181b3ba.tar.gz
libtracker-extract: Code clean up
This involves: - Renaming all tracker_extract_* APIs to tracker_ APIs. We don't do this everywhere and it was completely inconsistent and only for utilities. The structures were not using the same naming either. - Fixed some compiler warnings (for vorbis) - Fixed the includes in libtracker-extract source files. Many were not needed.
Diffstat (limited to 'examples')
-rw-r--r--examples/libtracker-extract/tracker-extract-mockup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/libtracker-extract/tracker-extract-mockup.c b/examples/libtracker-extract/tracker-extract-mockup.c
index be1f2a4ab..7063a5111 100644
--- a/examples/libtracker-extract/tracker-extract-mockup.c
+++ b/examples/libtracker-extract/tracker-extract-mockup.c
@@ -134,8 +134,8 @@ extract_mockup (const gchar *uri,
fclose (f);
/* TODO: Make sure we coalesce duplicate values */
- title = tracker_extract_coalesce (4, title_tagv1, title_tagv2, title_tagv3, title_unknown);
- lyricist = tracker_extract_coalesce (2, lyricist_tagv2, lyricist_unknown);
+ title = tracker_coalesce (4, title_tagv1, title_tagv2, title_tagv3, title_unknown);
+ lyricist = tracker_coalesce (2, lyricist_tagv2, lyricist_unknown);
performer = g_strdup ("Stone Gods");
composer = NULL;