Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorc.lamboo <casperlamboo@gmail.com>2022-03-30 16:10:37 +0300
committerc.lamboo <casperlamboo@gmail.com>2022-03-30 16:10:37 +0300
commit3c9e2a1b08ff48e80439ce5cf7a36103ebb39af5 (patch)
treeb15daab4984a69ba0b4844b21738c9656b0d1324 /plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml
parent99a3a8d11d16ca1b6ee94e3a6cf54a329bbf100f (diff)
Update RegExpValidator to RegularExpressionValidator
Due to Qt6 API change CURA-8640
Diffstat (limited to 'plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml')
-rw-r--r--plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml
index fa648d8bc2..73e6e42d80 100644
--- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml
+++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml
@@ -61,9 +61,9 @@ Item
anchors.left: parent.left
anchors.top: fileNameLabel.bottom
anchors.topMargin: UM.Theme.getSize("thin_margin").height
- validator: RegExpValidator
+ validator: RegularExpressionValidator
{
- regExp: /^[\w\-\. ()]{0,255}$/
+ regularExpression: /^[\w\-\. ()]{0,255}$/
}
text: PrintInformation.jobName