Skip to content

Commit

Permalink
audiocd: remove gtk-doc-esque comments from sj metadata code
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Matthew committed Mar 20, 2010
1 parent 99f6d8a commit f4a7f20
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions plugins/audiocd/sj-metadata-gvfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ G_DEFINE_TYPE_WITH_CODE (SjMetadataGvfs, sj_metadata_gvfs,
G_IMPLEMENT_INTERFACE (SJ_TYPE_METADATA, metadata_iface_init));


/**
/*
* Private methods
*/

Expand Down Expand Up @@ -159,7 +159,7 @@ gvfs_list_albums (SjMetadata *metadata, char **url, GError **error)
return NULL;
}

/**
/*
* GObject methods
*/

Expand Down
10 changes: 5 additions & 5 deletions plugins/audiocd/sj-metadata-musicbrainz.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ get_duration_from_sectors (int sectors)
return (sectors * BYTES_PER_SECTOR / BYTES_PER_SECOND);
}

/**
/*
* Virtual methods
*/

Expand Down Expand Up @@ -113,7 +113,7 @@ artist_and_title_from_title (TrackDetails *track, gpointer data)
}

#if WITH_CACHE
/**
/*
* Write the RDF in the MusicBrainz object to the file specified.
*/
static void
Expand Down Expand Up @@ -145,7 +145,7 @@ cache_rdf (musicbrainz_t mb, const char *filename)
g_free (rdf);
}

/**
/*
* Load into the MusicBrainz object the RDF from the specified cache file if it
* exists and is valid then return TRUE, otherwise return FALSE.
*/
Expand Down Expand Up @@ -188,7 +188,7 @@ cache_rdf (musicbrainz_t mb, const char *filename) {
}
#endif

/**
/*
* Fill the MusicBrainz object with RDF. Basically get the CD Index and check
* the local cache, if that fails then lookup the data online.
*/
Expand Down Expand Up @@ -270,7 +270,7 @@ convert_encoding(char **str)
static GList *
mb_list_albums (SjMetadata *metadata, char **url, GError **error)
{
/** The size of the buffer used in MusicBrainz lookups */
/* The size of the buffer used in MusicBrainz lookups */
SjMetadataMusicbrainzPrivate *priv;
GList *albums = NULL;
GList *al, *tl;
Expand Down
2 changes: 1 addition & 1 deletion plugins/audiocd/sj-metadata-musicbrainz3.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ get_release_includes (void)
return includes;
}

/**
/*
* Virtual methods
*/

Expand Down
4 changes: 2 additions & 2 deletions plugins/audiocd/sj-structures.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "sj-structures.h"
#include <glib.h>

/**
/*
* Free a TrackDetails*
*/
void track_details_free(TrackDetails *track)
Expand All @@ -38,7 +38,7 @@ void track_details_free(TrackDetails *track)
g_free (track);
}

/**
/*
* Free a AlbumDetails*
*/
void album_details_free(AlbumDetails *album)
Expand Down

0 comments on commit f4a7f20

Please sign in to comment.