File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,10 +87,10 @@ def __init__(self):
87
87
return Plugin
88
88
89
89
90
- class PyDMDesignerPlugin (QtDesigner .QPyDesignerCustomWidgetPlugin ):
90
+ class PyDMDesignerPlugin (QtDesigner .QDesignerCustomWidgetInterface ):
91
91
"""
92
92
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.
94
94
"""
95
95
96
96
def __init__ (
@@ -107,7 +107,7 @@ def __init__(
107
107
:param cls: Class of the widget to use
108
108
:type cls: QWidget
109
109
"""
110
- QtDesigner .QPyDesignerCustomWidgetPlugin .__init__ (self )
110
+ QtDesigner .QDesignerCustomWidgetInterface .__init__ (self )
111
111
self .initialized = False
112
112
self .is_container = is_container
113
113
self .cls = cls
You can’t perform that action at this time.
0 commit comments