Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:11:52 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:12:04 +0000
commit25180730194bec25f915f32ab846ea583fb1493f (patch)
tree9a73e0336ecf21e085d99d6a651c5547b9eb99f8 /examples/quick
parent6e3e7b9ca0548430aaa5e2555d6e02c64625fa3f (diff)
Rename PySide2 to PySide6
Adapt CMake files, build scripts, tests and examples. Task-number: PYSIDE-904 Change-Id: I845f7b006e9ad274fed5444ec4c1f9dbe176ff88 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'examples/quick')
-rw-r--r--examples/quick/customitems/painteditem/painteditem.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/quick/customitems/painteditem/painteditem.py b/examples/quick/customitems/painteditem/painteditem.py
index e89bf0bac..5476bdbaf 100644
--- a/examples/quick/customitems/painteditem/painteditem.py
+++ b/examples/quick/customitems/painteditem/painteditem.py
@@ -40,11 +40,11 @@
import sys
-from PySide2.QtGui import QPainter, QBrush, QColor
-from PySide2.QtWidgets import QApplication
-from PySide2.QtQml import qmlRegisterType
-from PySide2.QtCore import QUrl, Property, Signal, Qt, QPointF
-from PySide2.QtQuick import QQuickPaintedItem, QQuickView
+from PySide6.QtGui import QPainter, QBrush, QColor
+from PySide6.QtWidgets import QApplication
+from PySide6.QtQml import qmlRegisterType
+from PySide6.QtCore import QUrl, Property, Signal, Qt, QPointF
+from PySide6.QtQuick import QQuickPaintedItem, QQuickView
class TextBalloon(QQuickPaintedItem):