Remove unused required argument on _startCamera and _stopCamera

(they were probably there due to a copy/paste error, see _setJobState)
CURA-2411
This commit is contained in:
fieldOfView 2016-11-09 16:20:34 +01:00
parent fdbbda07be
commit 236723fc8d

View file

@ -138,14 +138,14 @@ class PrinterOutputDevice(QObject, OutputDevice):
def startCamera(self):
self._startCamera()
def _startCamera(self, job_state):
def _startCamera(self):
Logger.log("w", "_startCamera is not implemented by this output device")
@pyqtSlot()
def stopCamera(self):
self._stopCamera()
def _stopCamera(self, job_state):
def _stopCamera(self):
Logger.log("w", "_stopCamera is not implemented by this output device")
@pyqtProperty(str, notify = jobNameChanged)