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;
}

View File

@@ -102,7 +102,7 @@ public:
bool resolveAutoTypeEnabled() const;
Entry* lastTopVisibleEntry() const;
bool isExpired() const;
bool isRecycled();
bool isRecycled() const;
CustomData* customData();
const CustomData* customData() const;