Renamed 2 functions in Filter and Library

This commit is contained in:
Veloman Yunkan
2021-04-11 19:54:39 +04:00
parent 2d76f8395e
commit 80cd1fc989
2 changed files with 6 additions and 6 deletions

View File

@ -114,7 +114,7 @@ class Filter {
private:
friend class Library;
bool acceptByNonQueryCriteria(const Book& book) const;
bool accept(const Book& book) const;
};
@ -309,7 +309,7 @@ class Library
friend class libXMLDumper;
private: // functions
BookIdCollection getBooksByTitleOrDescription(const Filter& filter);
BookIdCollection filterViaBookDB(const Filter& filter);
void updateBookDB(const Book& book);
};