mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fixed signal slot connections
Fixed connection to renamed CustomData::customDataModified() signal Fixed connection to renamed Database::databaseModified() signal Fixed connection to renamed Group::groupModified() signal
This commit is contained in:
parent
21de6f6163
commit
52dcc2855e
@ -63,7 +63,7 @@ void EditWidgetProperties::setCustomData(CustomData* customData)
|
||||
m_customData = customData;
|
||||
|
||||
if (m_customData) {
|
||||
connect(m_customData, SIGNAL(modified()), SLOT(update()));
|
||||
connect(m_customData, SIGNAL(customDataModified()), SLOT(update()));
|
||||
}
|
||||
|
||||
update();
|
||||
|
@ -125,7 +125,7 @@ ShareObserver::ShareObserver(QSharedPointer<Database> db, QObject* parent)
|
||||
{
|
||||
connect(KeeShare::instance(), SIGNAL(activeChanged()), SLOT(handleDatabaseChanged()));
|
||||
|
||||
connect(m_db.data(), SIGNAL(modified()), SLOT(handleDatabaseChanged()));
|
||||
connect(m_db.data(), SIGNAL(databaseModified()), SLOT(handleDatabaseChanged()));
|
||||
connect(m_db.data(), SIGNAL(databaseSaved()), SLOT(handleDatabaseSaved()));
|
||||
|
||||
connect(m_fileWatcher, SIGNAL(fileCreated(QString)), SLOT(handleFileUpdated(QString)));
|
||||
|
@ -92,7 +92,7 @@ void EditGroupWidgetKeeShare::setGroup(Group* temporaryGroup)
|
||||
m_temporaryGroup = temporaryGroup;
|
||||
|
||||
if (m_temporaryGroup) {
|
||||
connect(m_temporaryGroup, SIGNAL(modified()), SLOT(update()));
|
||||
connect(m_temporaryGroup, SIGNAL(groupModified()), SLOT(update()));
|
||||
}
|
||||
update();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user