Skip to content

Commit f656105

Browse files
committed
WIP: pyside6 designer
1 parent bd4fc86 commit f656105

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pydm/widgets/qtplugin_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ def __init__(self):
8787
return Plugin
8888

8989

90-
class PyDMDesignerPlugin(QtDesigner.QPyDesignerCustomWidgetPlugin):
90+
class PyDMDesignerPlugin(QtDesigner.QDesignerCustomWidgetInterface):
9191
"""
9292
Parent class to standardize how pydm plugins are accessed in qt designer.
93-
All functions have default returns that can be overriden as necessary.
93+
All functions have default returns that can be overridden as necessary.
9494
"""
9595

9696
def __init__(
@@ -107,7 +107,7 @@ def __init__(
107107
:param cls: Class of the widget to use
108108
:type cls: QWidget
109109
"""
110-
QtDesigner.QPyDesignerCustomWidgetPlugin.__init__(self)
110+
QtDesigner.QDesignerCustomWidgetInterface.__init__(self)
111111
self.initialized = False
112112
self.is_container = is_container
113113
self.cls = cls

0 commit comments

Comments
 (0)