rename YEAR tag to DATE tag (as it should've been from the beginning)
This commit is contained in:
@@ -28,12 +28,12 @@ class MediaLibrary : public Screen<Window>
|
||||
{
|
||||
struct SearchConstraints
|
||||
{
|
||||
SearchConstraints(const std::string &tag, const std::string &album, const std::string &year) : PrimaryTag(tag), Album(album), Year(year) { }
|
||||
SearchConstraints(const std::string &album, const std::string &year) : Album(album), Year(year) { }
|
||||
SearchConstraints(const std::string &tag, const std::string &album, const std::string &date) : PrimaryTag(tag), Album(album), Date(date) { }
|
||||
SearchConstraints(const std::string &album, const std::string &date) : Album(album), Date(date) { }
|
||||
|
||||
std::string PrimaryTag;
|
||||
std::string Album;
|
||||
std::string Year;
|
||||
std::string Date;
|
||||
};
|
||||
|
||||
struct SearchConstraintsSorting
|
||||
|
||||
Reference in New Issue
Block a user