mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
13 lines
278 B
C++
13 lines
278 B
C++
#ifndef ENHANCEDWEBPAGE_H
|
|
#define ENHANCEDWEBPAGE_H
|
|
|
|
#include <QtWebEngineWidgets/qwebenginepage.h>
|
|
|
|
class EnhancedWebPage : public QWebEnginePage
|
|
{
|
|
protected:
|
|
bool certificateError(const QWebEngineCertificateError &certificateError) override;
|
|
};
|
|
|
|
#endif // !ECHANCEDWEBPAG
|