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:
authorRemco Burema <r.burema@ultimaker.com>2021-12-28 16:46:02 +0300
committerRemco Burema <r.burema@ultimaker.com>2021-12-28 16:46:02 +0300
commitabe7c1bf7f969562d63702e412e671b1e631c178 (patch)
tree86deda78b9b5de973c5a7ec03d6a1a3cebda9887 /cura/CrashHandler.py
parentf97f7ca6af8e9e718722d8d308b28c26ea20c290 (diff)
Search/replace Qt5->Qt6.
part of upgrading Qt to v6.2: CURA-8591
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index db44daa77c..4f3fb34f7f 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -20,9 +20,9 @@ try:
except ImportError:
with_sentry_sdk = False
-from PyQt5.QtCore import QT_VERSION_STR, PYQT_VERSION_STR, QUrl
-from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel, QTextEdit, QGroupBox, QCheckBox, QPushButton
-from PyQt5.QtGui import QDesktopServices
+from PyQt6.QtCore import QT_VERSION_STR, PYQT_VERSION_STR, QUrl
+from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel, QTextEdit, QGroupBox, QCheckBox, QPushButton
+from PyQt6.QtGui import QDesktopServices
from UM.Application import Application
from UM.Logger import Logger