mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-08 22:42:34 -04:00
const-ify several methods.
This commit is contained in:
parent
cda5e990ac
commit
ce7e01a1b1
4 changed files with 14 additions and 14 deletions
|
@ -62,18 +62,18 @@ public:
|
|||
GroupView* groupView();
|
||||
EntryView* entryView();
|
||||
Database* database();
|
||||
bool dbHasKey();
|
||||
bool canDeleteCurrentGoup();
|
||||
bool isInSearchMode();
|
||||
bool dbHasKey() const;
|
||||
bool canDeleteCurrentGoup() const;
|
||||
bool isInSearchMode() const;
|
||||
int addWidget(QWidget* w);
|
||||
void setCurrentIndex(int index);
|
||||
void setCurrentWidget(QWidget* widget);
|
||||
DatabaseWidget::Mode currentMode() const;
|
||||
void lock();
|
||||
void updateFilename(const QString& filename);
|
||||
int numberOfSelectedEntries();
|
||||
QStringList customEntryAttributes();
|
||||
bool isGroupSelected();
|
||||
int numberOfSelectedEntries() const;
|
||||
QStringList customEntryAttributes() const;
|
||||
bool isGroupSelected()const ;
|
||||
bool isInEditMode() const;
|
||||
|
||||
Q_SIGNALS:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue