Skip to content

Commit

Permalink
[quick] Lower min. Qt version (>=5.9) in two editor widgets
Browse files Browse the repository at this point in the history
There does not seem to be a reason to strictly require a higher version
of Qt Quick in two of editor widgets.

Qt Quick and Qt Quick Controls have a bit confusing versioning, see:
https://doc.qt.io/qt-5/qtquickcontrols-index.html

Qt 5.9 = Quick 2.9 + Quick Controls 2.2
  • Loading branch information
wonder-sk committed Apr 9, 2019
1 parent 2582399 commit d15cae9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/quickgui/plugin/editor/qgsquickdatetime.qml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
* *
***************************************************************************/

import QtQuick 2.11
import QtQuick.Controls 2.4
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.1
import QtQuick.Controls 1.4 as Controls1
import QtGraphicalEffects 1.0
Expand Down
5 changes: 2 additions & 3 deletions src/quickgui/plugin/editor/qgsquicktextedit.qml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
* *
***************************************************************************/

import QtQuick 2.11
import QtQuick.Controls 2.4
import QtQuick 2.5
import QtQuick 2.9
import QtQuick.Controls 2.2
import QgsQuick 0.1 as QgsQuick
import QtQuick.Layouts 1.3

Expand Down

0 comments on commit d15cae9

Please sign in to comment.