aboutsummaryrefslogtreecommitdiff
path: root/src/UpdateDatabase.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 23:06:20 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 01:10:47 +0100
commit3e8047e5831b4cc7dabae596746066698ad7c8cd (patch)
tree51cf8e3cc3b5b373f11ffbd6d7c0b34b3c0acb6c /src/UpdateDatabase.hxx
parent440ac51cf0250904813dfc9398ca8c9e6467328f (diff)
Directory: rename struct directory to Directory
Diffstat (limited to 'src/UpdateDatabase.hxx')
-rw-r--r--src/UpdateDatabase.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/UpdateDatabase.hxx b/src/UpdateDatabase.hxx
index 511f7569..7b55ce95 100644
--- a/src/UpdateDatabase.hxx
+++ b/src/UpdateDatabase.hxx
@@ -22,14 +22,14 @@
#include "check.h"
-struct directory;
+struct Directory;
struct song;
/**
* Caller must lock the #db_mutex.
*/
void
-delete_song(struct directory *parent, struct song *song);
+delete_song(Directory *parent, struct song *song);
/**
* Recursively free a directory and all its contents.
@@ -37,7 +37,7 @@ delete_song(struct directory *parent, struct song *song);
* Caller must lock the #db_mutex.
*/
void
-delete_directory(struct directory *directory);
+delete_directory(Directory *directory);
/**
* Caller must NOT lock the #db_mutex.
@@ -45,6 +45,6 @@ delete_directory(struct directory *directory);
* @return true if the database was modified
*/
bool
-delete_name_in(struct directory *parent, const char *name);
+delete_name_in(Directory *parent, const char *name);
#endif