Remove various undefined/unused functions

This commit is contained in:
Jonathan White 2024-02-07 13:34:54 -05:00
parent 5883f49f37
commit 194409abd6
6 changed files with 0 additions and 8 deletions

View File

@ -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();

View File

@ -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;

View File

@ -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;
};

View File

@ -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;

View File

@ -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;

View File

@ -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