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
path: root/cura/UI
diff options
context:
space:
mode:
authorRemco Burema <r.burema@ultimaker.com>2021-12-28 16:54:56 +0300
committerRemco Burema <r.burema@ultimaker.com>2021-12-28 16:54:56 +0300
commit32b52c6166d90898759177d8fac198d96bc83c8c (patch)
treeabe256121562bae09820dfd96d3bf50b5dc1eee6 /cura/UI
parentabe7c1bf7f969562d63702e412e671b1e631c178 (diff)
Qt5->Qt6: Rectify constant locations: UserRole, CppOwnership
part of CURA-8591
Diffstat (limited to 'cura/UI')
-rw-r--r--cura/UI/ObjectsModel.py16
-rw-r--r--cura/UI/WelcomePagesModel.py10
2 files changed, 13 insertions, 13 deletions
diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py
index cce2a56402..884d516f08 100644
--- a/cura/UI/ObjectsModel.py
+++ b/cura/UI/ObjectsModel.py
@@ -34,14 +34,14 @@ class _NodeInfo:
class ObjectsModel(ListModel):
"""Keep track of all objects in the project"""
- NameRole = Qt.UserRole + 1
- SelectedRole = Qt.UserRole + 2
- OutsideAreaRole = Qt.UserRole + 3
- BuilplateNumberRole = Qt.UserRole + 4
- NodeRole = Qt.UserRole + 5
- PerObjectSettingsCountRole = Qt.UserRole + 6
- MeshTypeRole = Qt.UserRole + 7
- ExtruderNumberRole = Qt.UserRole + 8
+ NameRole = Qt.ItemDataRole.UserRole + 1
+ SelectedRole = Qt.ItemDataRole.UserRole + 2
+ OutsideAreaRole = Qt.ItemDataRole.UserRole + 3
+ BuilplateNumberRole = Qt.ItemDataRole.UserRole + 4
+ NodeRole = Qt.ItemDataRole.UserRole + 5
+ PerObjectSettingsCountRole = Qt.ItemDataRole.UserRole + 6
+ MeshTypeRole = Qt.ItemDataRole.UserRole + 7
+ ExtruderNumberRole = Qt.ItemDataRole.UserRole + 8
def __init__(self, parent = None) -> None:
super().__init__(parent)
diff --git a/cura/UI/WelcomePagesModel.py b/cura/UI/WelcomePagesModel.py
index ccbefa2709..26c27418cf 100644
--- a/cura/UI/WelcomePagesModel.py
+++ b/cura/UI/WelcomePagesModel.py
@@ -36,11 +36,11 @@ class WelcomePagesModel(ListModel):
Note that in any case, a page that has its "should_show_function" == False will ALWAYS be skipped.
"""
- IdRole = Qt.UserRole + 1 # Page ID
- PageUrlRole = Qt.UserRole + 2 # URL to the page's QML file
- NextPageIdRole = Qt.UserRole + 3 # The next page ID it should go to
- NextPageButtonTextRole = Qt.UserRole + 4 # The text for the next page button
- PreviousPageButtonTextRole = Qt.UserRole + 5 # The text for the previous page button
+ IdRole = Qt.ItemDataRole.UserRole + 1 # Page ID
+ PageUrlRole = Qt.ItemDataRole.UserRole + 2 # URL to the page's QML file
+ NextPageIdRole = Qt.ItemDataRole.UserRole + 3 # The next page ID it should go to
+ NextPageButtonTextRole = Qt.ItemDataRole.UserRole + 4 # The text for the next page button
+ PreviousPageButtonTextRole = Qt.ItemDataRole.UserRole + 5 # The text for the previous page button
def __init__(self, application: "CuraApplication", parent: Optional["QObject"] = None) -> None:
super().__init__(parent)