mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-28 15:27:18 -05:00
Cleanup
This commit is contained in:
parent
3139ae1528
commit
e81564387c
@ -49,6 +49,8 @@ EditWidgetIcons::EditWidgetIcons(QWidget* parent)
|
|||||||
, m_customIconModel(new CustomIconModel(this))
|
, m_customIconModel(new CustomIconModel(this))
|
||||||
#ifdef WITH_XC_HTTP
|
#ifdef WITH_XC_HTTP
|
||||||
, m_httpClient(nullptr)
|
, m_httpClient(nullptr)
|
||||||
|
, m_fallbackToGoogle(true)
|
||||||
|
, m_redirectCount(0)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
m_ui->setupUi(this);
|
m_ui->setupUi(this);
|
||||||
@ -69,9 +71,6 @@ EditWidgetIcons::EditWidgetIcons(QWidget* parent)
|
|||||||
connect(m_ui->faviconButton, SIGNAL(clicked()), SLOT(downloadFavicon()));
|
connect(m_ui->faviconButton, SIGNAL(clicked()), SLOT(downloadFavicon()));
|
||||||
|
|
||||||
m_ui->faviconButton->setVisible(false);
|
m_ui->faviconButton->setVisible(false);
|
||||||
|
|
||||||
m_fallbackToGoogle = true;
|
|
||||||
m_redirectCount = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
EditWidgetIcons::~EditWidgetIcons()
|
EditWidgetIcons::~EditWidgetIcons()
|
||||||
|
@ -89,12 +89,12 @@ private:
|
|||||||
Database* m_database;
|
Database* m_database;
|
||||||
Uuid m_currentUuid;
|
Uuid m_currentUuid;
|
||||||
QString m_url;
|
QString m_url;
|
||||||
QUrl m_redirectUrl;
|
|
||||||
bool m_fallbackToGoogle;
|
|
||||||
unsigned short m_redirectCount;
|
|
||||||
DefaultIconModel* const m_defaultIconModel;
|
DefaultIconModel* const m_defaultIconModel;
|
||||||
CustomIconModel* const m_customIconModel;
|
CustomIconModel* const m_customIconModel;
|
||||||
#ifdef WITH_XC_HTTP
|
#ifdef WITH_XC_HTTP
|
||||||
|
QUrl m_redirectUrl;
|
||||||
|
bool m_fallbackToGoogle;
|
||||||
|
unsigned short m_redirectCount;
|
||||||
qhttp::client::QHttpClient* m_httpClient;
|
qhttp::client::QHttpClient* m_httpClient;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user