diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 23:06:20 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-03 01:10:47 +0100 |
commit | 3e8047e5831b4cc7dabae596746066698ad7c8cd (patch) | |
tree | 51cf8e3cc3b5b373f11ffbd6d7c0b34b3c0acb6c /src/song.h | |
parent | 440ac51cf0250904813dfc9398ca8c9e6467328f (diff) |
Directory: rename struct directory to Directory
Diffstat (limited to 'src/song.h')
-rw-r--r-- | src/song.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/song.h b/src/song.h index 39f916a6a..119d89ccd 100644 --- a/src/song.h +++ b/src/song.h @@ -43,7 +43,7 @@ struct song { struct list_head siblings; struct tag *tag; - struct directory *parent; + struct Directory *parent; time_t mtime; /** @@ -64,7 +64,7 @@ struct song { * A dummy #directory instance that is used for "detached" song * copies. */ -extern struct directory detached_root; +extern struct Directory detached_root; G_BEGIN_DECLS @@ -74,7 +74,7 @@ song_remote_new(const char *uri); /** allocate a new song with a local file name */ struct song * -song_file_new(const char *path, struct directory *parent); +song_file_new(const char *path, struct Directory *parent); /** * allocate a new song structure with a local file name and attempt to @@ -82,7 +82,7 @@ song_file_new(const char *path, struct directory *parent); * data, NULL is returned. */ struct song * -song_file_load(const char *path, struct directory *parent); +song_file_load(const char *path, struct Directory *parent); /** * Replaces the URI of a song object. The given song object is |