Skip to content

Commit

Permalink
Fix compile issue on Qt5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
huangxinpin committed Dec 28, 2016
1 parent 981ad59 commit d6231e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Fervor.pri
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
QT += core gui webkit webkitwidgets network
QT += core gui webenginewidgets network

isEmpty(FV_APP_NAME) {
warning("Fervor: falling back to application name '$$TARGET'")
Expand Down
8 changes: 4 additions & 4 deletions fvupdatewindow.ui
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FvUpdateWindow</class>
<widget class="QWidget" name="FvUpdateWindow">
Expand Down Expand Up @@ -49,7 +49,7 @@
</property>
<layout class="QHBoxLayout" name="horizontalLayout_7">
<item>
<widget class="QWebView" name="releaseNotesWebView">
<widget class="QWebEngineView" name="releaseNotesWebView">
<property name="minimumSize">
<size>
<width>160</width>
Expand Down Expand Up @@ -116,9 +116,9 @@
</widget>
<customwidgets>
<customwidget>
<class>QWebView</class>
<class>QWebEngineView</class>
<extends>QWidget</extends>
<header>QtWebKit/QWebView</header>
<header>QWebEngineView</header>
</customwidget>
</customwidgets>
<resources/>
Expand Down

1 comment on commit d6231e1

@DylanC
Copy link

@DylanC DylanC commented on d6231e1 Mar 21, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I just about to fix this soon.

Please sign in to comment.