TagFile: rename exported functions, use CamelCase

And specify whether generic tags are being scanned.
This commit is contained in:
Max Kellermann
2018-07-06 22:33:35 +02:00
parent 2c30e16371
commit 73c95d1fb2
5 changed files with 11 additions and 10 deletions

View File

@@ -81,7 +81,7 @@ public:
};
bool
tag_file_scan(Path path_fs, TagHandler &handler) noexcept
ScanFileTagsNoGeneric(Path path_fs, TagHandler &handler) noexcept
{
assert(!path_fs.IsNull());
@@ -100,11 +100,11 @@ tag_file_scan(Path path_fs, TagHandler &handler) noexcept
}
bool
tag_file_scan(Path path, TagBuilder &builder) noexcept
ScanFileTagsWithGeneric(Path path, TagBuilder &builder) noexcept
{
FullTagHandler h(builder);
if (!tag_file_scan(path, h))
if (!ScanFileTagsNoGeneric(path, h))
return false;
if (builder.empty())