Renamed Manager to RestartManager

Contributes to: CURA-8587
This commit is contained in:
Jelle Spijker 2021-12-08 14:33:22 +01:00
parent 27cb1d2d9f
commit fd508342fe
No known key found for this signature in database
GPG key ID: 6662DC033BE6B99A
3 changed files with 12 additions and 8 deletions

View file

@ -13,7 +13,7 @@ from UM.PluginRegistry import PluginRegistry # To find out where we are stored
from .RemotePackageList import RemotePackageList # To register this type with QML.
from .LocalPackageList import LocalPackageList # To register this type with QML.
from .Manager import Manager # To register this type with QML.
from .RestartManager import RestartManager # To register this type with QML.
if TYPE_CHECKING:
from PyQt5.QtCore import QObject
@ -31,7 +31,7 @@ class Marketplace(Extension):
qmlRegisterType(RemotePackageList, "Marketplace", 1, 0, "RemotePackageList")
qmlRegisterType(LocalPackageList, "Marketplace", 1, 0, "LocalPackageList")
qmlRegisterType(Manager, "Marketplace", 1, 0, "Manager")
qmlRegisterType(RestartManager, "Marketplace", 1, 0, "RestartManager")
@pyqtSlot()
def show(self) -> None: