fix名字不统一

This commit is contained in:
shenmo
2020-11-18 19:49:22 +08:00
parent 61591b793a
commit c324f501bb
24 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
#ifndef WEBENGINEPAGE_H
#define WEBENGINEPAGE_H
#include <QWebEnginePage>
#include <QObject>
class WebEnginePage : public QWebEnginePage
{
public:
WebEnginePage(QObject *parent = Q_NULLPTR);
protected:
QWebEnginePage *createWindow(WebWindowType type) override;
public slots:
void onUrlChanged(const QUrl);
};
#endif // WEBENGINEPAGE_H