mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-06-09 15:33:07 -04:00
Coding style fixes.
This commit is contained in:
parent
5297722ede
commit
bde397503e
8 changed files with 29 additions and 32 deletions
|
@ -40,10 +40,10 @@ EntryView::EntryView(QWidget* parent)
|
|||
setDragEnabled(true);
|
||||
setSortingEnabled(true);
|
||||
|
||||
connect(this, SIGNAL(activated(const QModelIndex&)), SLOT(emitEntryActivated(const QModelIndex&)));
|
||||
connect(this, SIGNAL(activated(QModelIndex)), SLOT(emitEntryActivated(QModelIndex)));
|
||||
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SIGNAL(entrySelectionChanged()));
|
||||
connect(m_model, SIGNAL(switchedToSearch()), this, SLOT(switchToSearch()));
|
||||
connect(m_model, SIGNAL(switchedToView()), this, SLOT(switchToView()));
|
||||
connect(m_model, SIGNAL(switchedToSearch()), SLOT(switchToSearch()));
|
||||
connect(m_model, SIGNAL(switchedToView()), SLOT(switchToView()));
|
||||
|
||||
sortByColumn(0, Qt::AscendingOrder);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue