mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Cleanup CLI includes across all components
* Remove unused include files * Move includes out of widely shared headers (reduced rebuild time) * Consolidate code for Analyze command
This commit is contained in:
parent
dc496fd1d9
commit
be3e77d721
33 changed files with 79 additions and 232 deletions
|
@ -17,6 +17,11 @@
|
|||
|
||||
#include "Utils.h"
|
||||
|
||||
#include "core/Database.h"
|
||||
#include "core/EntryAttributes.h"
|
||||
#include "keys/CompositeKey.h"
|
||||
#include "keys/FileKey.h"
|
||||
#include "keys/PasswordKey.h"
|
||||
#ifdef WITH_XC_YUBIKEY
|
||||
#include "keys/YkChallengeResponseKey.h"
|
||||
#endif
|
||||
|
@ -30,7 +35,7 @@
|
|||
|
||||
#include <QFileInfo>
|
||||
#include <QProcess>
|
||||
#include <QScopedPointer>
|
||||
#include <QTextStream>
|
||||
|
||||
namespace Utils
|
||||
{
|
||||
|
@ -91,7 +96,7 @@ namespace Utils
|
|||
}
|
||||
|
||||
QSharedPointer<Database> unlockDatabase(const QString& databaseFilename,
|
||||
const bool isPasswordProtected,
|
||||
bool isPasswordProtected,
|
||||
const QString& keyFilename,
|
||||
const QString& yubiKeySlot,
|
||||
bool quiet)
|
||||
|
@ -289,7 +294,7 @@ namespace Utils
|
|||
|
||||
QStringList failedProgramNames;
|
||||
|
||||
for (auto prog : clipPrograms) {
|
||||
for (const auto& prog : clipPrograms) {
|
||||
QScopedPointer<QProcess> clipProcess(new QProcess(nullptr));
|
||||
|
||||
// Skip empty parts, otherwise the program may clip the empty string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue