File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 23
23
#include < QObject>
24
24
#include < QPainter>
25
25
#include < QUrl>
26
+ #include < QVariant>
26
27
27
28
/* *
28
29
* @brief The QWebFrame class is a collection of stubs to mimic the API of a QWebFrame on systems
@@ -72,6 +73,11 @@ class CORE_EXPORT QWebFrame : public QObject
72
73
73
74
}
74
75
76
+ QVariant evaluateJavaScript ( const QString & )
77
+ {
78
+ return QVariant ();
79
+ }
80
+
75
81
signals:
76
82
void javaScriptWindowObjectCleared ();
77
83
// / @endcond
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ class CORE_EXPORT QWebPage : public QObject
181
181
182
182
protected:
183
183
184
- virtual void javaScriptConsoleMessage ( const QString , int , const QString& ) {};
184
+ virtual void javaScriptConsoleMessage ( const QString& , int , const QString& ) {}
185
185
186
186
private:
187
187
QWebSettings* mSettings ;
You can’t perform that action at this time.
0 commit comments