mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
Checking QtWebKit version rather than global Qt version. See #96
- choose (not) to compile with using QWebView::selectedHtml function
This commit is contained in:
parent
a8f3c74c74
commit
b37a02e078
|
@ -540,7 +540,7 @@ void WebView::contextMenuEvent(QContextMenuEvent* event)
|
|||
m_menu->addAction(engine.icon, tr("Search \"%1 ..\" with %2").arg(selectedText, engine.name), this, SLOT(searchSelectedText()));
|
||||
}
|
||||
|
||||
#if QT_VERSION == 0x040800
|
||||
#if (QTWEBKIT_VERSION >= QTWEBKIT_VERSION_CHECK(2, 2, 0))
|
||||
// still bugged in 4.8 RC (it shows selection of webkit's internal source, not html from page)
|
||||
// it may or may not be bug, but this implementation is useless for us
|
||||
//
|
||||
|
@ -643,7 +643,7 @@ void WebView::showSource()
|
|||
p_QupZilla->showSource();
|
||||
}
|
||||
|
||||
#if QT_VERSION >= 0x040800
|
||||
#if (QTWEBKIT_VERSION >= QTWEBKIT_VERSION_CHECK(2, 2, 0))
|
||||
void WebView::showSourceOfSelection()
|
||||
{
|
||||
p_QupZilla->showSource(selectedHtml());
|
||||
|
|
|
@ -115,7 +115,7 @@ private slots:
|
|||
void sendLinkByMail();
|
||||
void bookmarkLink();
|
||||
void showSource();
|
||||
#if QT_VERSION >= 0x040800
|
||||
#if (QTWEBKIT_VERSION >= QTWEBKIT_VERSION_CHECK(2, 2, 0))
|
||||
void showSourceOfSelection();
|
||||
#endif
|
||||
void showSiteInfo();
|
||||
|
|
Loading…
Reference in New Issue
Block a user