mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Performed project-wide code formatting
* Updated format CMake command to properly ignore new directories and files * Added output when command is run * Resolves #2623
This commit is contained in:
parent
c74664097b
commit
7e1b16250c
68 changed files with 591 additions and 542 deletions
|
@ -29,7 +29,7 @@ namespace
|
|||
{
|
||||
const int FileChangeDelay = 500;
|
||||
const int TimerResolution = 100;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
DelayingFileWatcher::DelayingFileWatcher(QObject* parent)
|
||||
: QObject(parent)
|
||||
|
@ -238,13 +238,13 @@ void BulkFileWatcher::emitSignals()
|
|||
{
|
||||
QMap<QString, QList<Signal>> queued;
|
||||
m_pendingSignals.swap(queued);
|
||||
for (const auto& path : queued.keys()){
|
||||
const auto &signal = queued[path];
|
||||
for (const auto& path : queued.keys()) {
|
||||
const auto& signal = queued[path];
|
||||
if (signal.last() == Removed) {
|
||||
emit fileRemoved(path);
|
||||
continue;
|
||||
}
|
||||
if (signal.first() == Created){
|
||||
if (signal.first() == Created) {
|
||||
emit fileCreated(path);
|
||||
continue;
|
||||
}
|
||||
|
@ -252,7 +252,7 @@ void BulkFileWatcher::emitSignals()
|
|||
}
|
||||
}
|
||||
|
||||
void BulkFileWatcher::scheduleSignal(Signal signal, const QString &path)
|
||||
void BulkFileWatcher::scheduleSignal(Signal signal, const QString& path)
|
||||
{
|
||||
// we need to collect signals since the file watcher API may send multiple signals for a "single" change
|
||||
// therefore we wait until the event loop finished before starting to import any changes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue