diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 18:57:29 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 18:57:29 +0200 |
commit | 87b431b218180a34ef9aa6899fdbb2a95712aa44 (patch) | |
tree | 6afd831574d42a55e34655f6ac8dce70d8f24254 /src | |
parent | pedantic (diff) | |
download | rekonq-87b431b218180a34ef9aa6899fdbb2a95712aa44.tar.xz |
removed webkit debug comments
Diffstat (limited to 'src')
-rw-r--r-- | src/webview.cpp | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index ee54bbaa..004a4642 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -85,23 +85,12 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r WebView *webView; -// kWarning() << "HttpStatusCodeAttribute " << request.attribute(QNetworkRequest::HttpStatusCodeAttribute, QVariant(QVariant::Int)); -// kWarning() << "HttpReasonPhraseAttribute " << request.attribute(QNetworkRequest::HttpReasonPhraseAttribute, QVariant(QVariant::ByteArray)); -// kWarning() << "RedirectionTargetAttribute " << request.attribute(QNetworkRequest::RedirectionTargetAttribute, QVariant(QVariant::Url)); -// kWarning() << "ConnectionEncryptedAttribute " << request.attribute(QNetworkRequest::ConnectionEncryptedAttribute, QVariant(QVariant::Bool)); -// kWarning() << "CacheLoadControlAttribute " << request.attribute(QNetworkRequest::CacheLoadControlAttribute, QVariant(QVariant::Int)); -// kWarning() << "CacheSaveControlAttribute " << request.attribute(QNetworkRequest::CacheSaveControlAttribute, QVariant(QVariant::Bool)); -// kWarning() << "SourceIsFromCacheAttribute " << request.attribute(QNetworkRequest::SourceIsFromCacheAttribute, QVariant(QVariant::Bool)); -// kWarning() << "------------------------------------------------------------------"; - switch(type) { // user clicked on a link or pressed return on a focused link. case QWebPage::NavigationTypeLinkClicked: -// kWarning() << "Navigation Type LINKCLICKED.."; - if(m_keyboardModifiers & Qt::ControlModifier || m_pressedButtons == Qt::MidButton) { webView = Application::instance()->newWebView(); @@ -132,32 +121,26 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r // user activated a submit button for an HTML form. case QWebPage::NavigationTypeFormSubmitted: -// kWarning() << "Navigation Type Form Submitted.."; break; // Navigation to a previously shown document in the back or forward history is requested. case QWebPage::NavigationTypeBackOrForward: -// kWarning() << "Navigation Type BackOrForward.."; break; // user activated the reload action. case QWebPage::NavigationTypeReload: -// kWarning() << "Navigation Type Reload.."; break; // An HTML form was submitted a second time. case QWebPage::NavigationTypeFormResubmitted: -// kWarning() << "Navigation Type Form Resubmitted.."; break; // A navigation to another document using a method not listed above. case QWebPage::NavigationTypeOther: -// kWarning() << "Navigation Type OTHER.."; break; // should be nothing.. default: -// kWarning() << "Default NON existant case.."; break; } @@ -170,7 +153,7 @@ QWebPage *WebPage::createWindow(QWebPage::WebWindowType type) // added to manage web modal dialogs if (type == QWebPage::WebModalDialog) { - kWarning() << "prova QWebView ------------------------------------------------------"; + kWarning() << "trying QWebView here ---------------------------------------"; QWebView *w = new QWebView; return w->page(); } @@ -424,4 +407,3 @@ void WebView::keyPressEvent(QKeyEvent *event) QWebView::keyPressEvent(event); } - |