Formatting the code.

This commit is contained in:
Louis-Bertrand Varin
2018-03-31 16:01:30 -04:00
parent 74efc57369
commit 8324d03f0a
294 changed files with 3796 additions and 3740 deletions

View File

@@ -22,7 +22,7 @@
class TestKdbx3 : public TestKeePass2Format
{
Q_OBJECT
Q_OBJECT
private slots:
void testNonAscii();
@@ -39,12 +39,17 @@ protected:
Database* readXml(const QString& path, bool strictMode, bool& hasError, QString& errorString) override;
void writeXml(QBuffer* buf, Database* db, bool& hasError, QString& errorString) override;
void readKdbx(QIODevice* device, CompositeKey const& key, QScopedPointer<Database>& db,
bool& hasError, QString& errorString) override;
void readKdbx(const QString& path, CompositeKey const& key, QScopedPointer<Database>& db,
bool& hasError, QString& errorString) override;
void readKdbx(QIODevice* device,
CompositeKey const& key,
QScopedPointer<Database>& db,
bool& hasError,
QString& errorString) override;
void readKdbx(const QString& path,
CompositeKey const& key,
QScopedPointer<Database>& db,
bool& hasError,
QString& errorString) override;
void writeKdbx(QIODevice* device, Database* db, bool& hasError, QString& errorString) override;
};
#endif // KEEPASSXC_TEST_KDBX3_H