mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-07 06:27:39 +03:00
Refactored DatabaseWidget::currentEntryHas*()
This commit is contained in:
parent
a599787a25
commit
b45437d502
3 changed files with 16 additions and 16 deletions
|
@ -907,7 +907,7 @@ bool DatabaseWidget::isGroupSelected() const
|
|||
return m_groupView->currentGroup() != Q_NULLPTR;
|
||||
}
|
||||
|
||||
bool DatabaseWidget::hasTitle()
|
||||
bool DatabaseWidget::currentEntryHasTitle()
|
||||
{
|
||||
Entry* currentEntry = m_entryView->currentEntry();
|
||||
if (!currentEntry) {
|
||||
|
@ -917,7 +917,7 @@ bool DatabaseWidget::hasTitle()
|
|||
return !currentEntry->title().isEmpty();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::hasUsername()
|
||||
bool DatabaseWidget::currentEntryHasUsername()
|
||||
{
|
||||
Entry* currentEntry = m_entryView->currentEntry();
|
||||
if (!currentEntry) {
|
||||
|
@ -927,7 +927,7 @@ bool DatabaseWidget::hasUsername()
|
|||
return !currentEntry->username().isEmpty();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::hasPassword()
|
||||
bool DatabaseWidget::currentEntryHasPassword()
|
||||
{
|
||||
Entry* currentEntry = m_entryView->currentEntry();
|
||||
if (!currentEntry) {
|
||||
|
@ -937,7 +937,7 @@ bool DatabaseWidget::hasPassword()
|
|||
return !currentEntry->password().isEmpty();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::hasUrl()
|
||||
bool DatabaseWidget::currentEntryHasUrl()
|
||||
{
|
||||
Entry* currentEntry = m_entryView->currentEntry();
|
||||
if (!currentEntry) {
|
||||
|
@ -947,7 +947,7 @@ bool DatabaseWidget::hasUrl()
|
|||
return !currentEntry->url().isEmpty();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::hasNotes()
|
||||
bool DatabaseWidget::currentEntryHasNotes()
|
||||
{
|
||||
Entry* currentEntry = m_entryView->currentEntry();
|
||||
if (!currentEntry) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue