Skip to content

Commit

Permalink
Remove remaining traces
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Apr 17, 2024
1 parent 328598a commit 5740074
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
11 changes: 3 additions & 8 deletions src/qml/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,9 @@ file(GLOB qfield_qmlfiles_editorwidgets
file(GLOB qfield_qmlfiles_theme
"${CMAKE_SOURCE_DIR}/src/qml/imports/Theme/*.qml")

list(
APPEND
qfield_qmlfiles
${qfield_qmlfiles_geometryeditors}
${qfield_qmlfiles_editorwidgets}
${qfield_qmlfiles_theme}
${qfield_qmlfiles_theme_extra}
${qfield_qmlfiles_qfieldcontrols})
list(APPEND qfield_qmlfiles ${qfield_qmlfiles_geometryeditors}
${qfield_qmlfiles_editorwidgets} ${qfield_qmlfiles_theme}
${qfield_qmlfiles_theme_extra})

set_property(TARGET qfield_qml PROPERTY QML_FILES ${qfield_qmlfiles})

Expand Down
10 changes: 6 additions & 4 deletions test/qml/tst_editorwidgets.qml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,28 @@ import QtTest 1.0

import org.qfield 1.0

import QFieldControls 1.0
import Theme 1.0

import "../../src/qml/editorwidgets" as EditorWidgets

TestCase {
name: "EditorWidgets"

TextEdit {
EditorWidgets.TextEdit {
id: textEdit
property var value: 'one'
property var config: undefined
property bool isEnabled: true
}

Range {
EditorWidgets.Range {
id: range
property var value: 1
property var config: undefined
property bool isEnabled: true
}

DateTime {
EditorWidgets.DateTime {
id: dateTime

property var value: '2022-01-01'
Expand Down
2 changes: 0 additions & 2 deletions test/qml/tst_positioning.qml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import QtTest 1.0

import org.qfield 1.0

import QFieldControls 1.0

TestCase {
name: "Positioning"

Expand Down

0 comments on commit 5740074

Please sign in to comment.