|
@@ -500,7 +500,6 @@ class MachineManager(QObject):
|
|
|
return ""
|
|
|
|
|
|
@pyqtProperty(str, notify = globalContainerChanged)
|
|
|
- @deprecated("Use activeMachine.name", "2.6")
|
|
|
def activeMachineName(self) -> str:
|
|
|
if self._global_container_stack:
|
|
|
return self._global_container_stack.getName()
|
|
@@ -508,7 +507,6 @@ class MachineManager(QObject):
|
|
|
return ""
|
|
|
|
|
|
@pyqtProperty(str, notify = globalContainerChanged)
|
|
|
- @deprecated("Use activeMachine.id", "2.6")
|
|
|
def activeMachineId(self) -> str:
|
|
|
if self._global_container_stack:
|
|
|
return self._global_container_stack.getId()
|