Skip to content

Commit

Permalink
Fix build without WITH_QTWEBKIT
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 6, 2019
1 parent fe39b26 commit 6efe30c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/qgsidentifyresultsdialog.cpp
Expand Up @@ -58,6 +58,7 @@
#include <QPixmap>
#include <QMenu>
#include <QClipboard>
#include <QDesktopWidget>
#include <QMenuBar>
#include <QPushButton>
#include <QPrinter>
Expand Down Expand Up @@ -930,6 +931,7 @@ void QgsIdentifyResultsDialog::addFeature( QgsRasterLayer *layer,
if ( currentFormat == QgsRaster::IdentifyFormatHtml || currentFormat == QgsRaster::IdentifyFormatText )
{
QgsIdentifyResultsWebViewItem *attrItem = new QgsIdentifyResultsWebViewItem( lstResults );
#ifdef WITH_QTWEBKIT
attrItem->webView()->page()->setLinkDelegationPolicy( QWebPage::DelegateExternalLinks );
const int horizontalDpi = qApp->desktop()->screen()->logicalDpiX();
// Adjust zoom: text is ok, but HTML seems rather big at least on Linux/KDE
Expand All @@ -941,6 +943,7 @@ void QgsIdentifyResultsDialog::addFeature( QgsRasterLayer *layer,
{
QDesktopServices::openUrl( url );
} );
#endif
featItem->addChild( attrItem ); // before setHtml()!
if ( !attributes.isEmpty() )
{
Expand Down

0 comments on commit 6efe30c

Please sign in to comment.