some & squishes missed in review

This commit is contained in:
Stephen Birarda 2015-03-13 18:12:31 -07:00
parent e7f21de0a1
commit 859f81cdd7
2 changed files with 2 additions and 2 deletions

View file

@ -47,6 +47,6 @@ bool DataWebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkReques
} }
} }
QString DataWebPage::userAgentForUrl(const QUrl & url) const { QString DataWebPage::userAgentForUrl(const QUrl& url) const {
return INTERFACE_USER_AGENT; return INTERFACE_USER_AGENT;
} }

View file

@ -22,7 +22,7 @@ public:
protected: protected:
void javaScriptConsoleMessage(const QString & message, int lineNumber, const QString & sourceID); void javaScriptConsoleMessage(const QString & message, int lineNumber, const QString & sourceID);
bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, QWebPage::NavigationType type); bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, QWebPage::NavigationType type);
virtual QString userAgentForUrl(const QUrl & url) const; virtual QString userAgentForUrl(const QUrl& url) const;
}; };
#endif // hifi_DataWebPage_h #endif // hifi_DataWebPage_h