Add ability to export database as HTML for printing

This commit is contained in:
Jonathan White 2019-06-30 11:11:15 -04:00
parent 4a3cfab146
commit aac76ad407
9 changed files with 349 additions and 4 deletions

View file

@ -257,9 +257,9 @@ Entry* Group::lastTopVisibleEntry() const
return m_lastTopVisibleEntry;
}
bool Group::isRecycled()
bool Group::isRecycled() const
{
Group* group = this;
auto group = this;
if (!group->database()) {
return false;
}