1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Fix build with Qt 5.6

This commit is contained in:
David Rosca 2016-05-11 11:09:50 +02:00
parent c004d52db1
commit b8f5a4ccf1
2 changed files with 3 additions and 3 deletions

View File

@ -213,7 +213,7 @@ void AutoFill::saveForm(WebPage *page, const QUrl &frameUrl, const PageFormData
} }
// Returns all saved passwords on this page // Returns all saved passwords on this page
QVector<PasswordEntry> AutoFill::completePage(QWebEnginePage *page, const QUrl &frameUrl) QVector<PasswordEntry> AutoFill::completePage(WebPage *page, const QUrl &frameUrl)
{ {
QVector<PasswordEntry> list; QVector<PasswordEntry> list;

View File

@ -1,6 +1,6 @@
/* ============================================================ /* ============================================================
* QupZilla - WebKit based browser * QupZilla - WebKit based browser
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com> * Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -70,7 +70,7 @@ public:
void removeAllEntries(); void removeAllEntries();
void saveForm(WebPage *page, const QUrl &frameUrl, const PageFormData &formData); void saveForm(WebPage *page, const QUrl &frameUrl, const PageFormData &formData);
QVector<PasswordEntry> completePage(QWebEnginePage *page, const QUrl &frameUrl); QVector<PasswordEntry> completePage(WebPage *page, const QUrl &frameUrl);
QByteArray exportPasswords(); QByteArray exportPasswords();
bool importPasswords(const QByteArray &data); bool importPasswords(const QByteArray &data);