mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Remove various undefined/unused functions
This commit is contained in:
parent
5883f49f37
commit
194409abd6
@ -198,7 +198,6 @@ private:
|
||||
const bool omitWwwSubdomain = false);
|
||||
QString getDatabaseRootUuid();
|
||||
QString getDatabaseRecycleBinUuid();
|
||||
bool checkLegacySettings(QSharedPointer<Database> db);
|
||||
void hideWindow() const;
|
||||
void raiseWindow(const bool force = false);
|
||||
void updateWindowState();
|
||||
|
@ -154,7 +154,6 @@ public:
|
||||
const QList<Group*>& children() const;
|
||||
QList<Entry*> entries();
|
||||
const QList<Entry*>& entries() const;
|
||||
Entry* findEntryRecursive(const QString& text, EntryReferenceType referenceType, Group* group = nullptr);
|
||||
QList<Entry*> referencesRecursive(const Entry* entry) const;
|
||||
QList<Entry*> entriesRecursive(bool includeHistoryItems = false) const;
|
||||
QList<const Group*> groupsRecursive(bool includeSelf) const;
|
||||
|
@ -62,8 +62,6 @@ private slots:
|
||||
void fetchReadyRead();
|
||||
|
||||
private:
|
||||
void fetchPassword(const QString& password);
|
||||
|
||||
QStringList m_pwdsToTry; // The list of remaining passwords to validate
|
||||
QHash<QNetworkReply*, QPair<QString, QByteArray>> m_replies;
|
||||
};
|
||||
|
@ -152,7 +152,6 @@ private:
|
||||
void setupEntryUpdate();
|
||||
void setupColorButton(bool foreground, const QColor& color);
|
||||
|
||||
bool passwordsEqual();
|
||||
void setForms(Entry* entry, bool restore = false);
|
||||
QMenu* createPresetsMenu();
|
||||
void updateEntryData(Entry* entry) const;
|
||||
|
@ -46,7 +46,6 @@ public:
|
||||
explicit EntryURLModel(QObject* parent = nullptr);
|
||||
|
||||
void setEntryAttributes(EntryAttributes* entryAttributes);
|
||||
void insertRow(const QString& key, const QString& value);
|
||||
void setEntryUrl(const QString& entryUrl);
|
||||
bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override;
|
||||
QVariant data(const QModelIndex& index, int role) const override;
|
||||
|
@ -19,7 +19,6 @@
|
||||
#ifndef KEEPASSX_TESTCSVPARSER_H
|
||||
#define KEEPASSX_TESTCSVPARSER_H
|
||||
|
||||
#include <QFile>
|
||||
#include <QTemporaryFile>
|
||||
|
||||
#include "format/CsvParser.h"
|
||||
@ -62,7 +61,6 @@ private:
|
||||
QScopedPointer<QTemporaryFile> file;
|
||||
QScopedPointer<CsvParser> parser;
|
||||
CsvTable t;
|
||||
void dumpRow(CsvTable table, int row);
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_TESTCSVPARSER_H
|
||||
|
Loading…
Reference in New Issue
Block a user