Browse Source

Removed getBackend from Cura (and onto Uranium)

Jaime van Kessel 8 years ago
parent
commit
891aebc366
1 changed files with 0 additions and 7 deletions
  1. 0 7
      cura/CuraApplication.py

+ 0 - 7
cura/CuraApplication.py

@@ -694,13 +694,6 @@ class CuraApplication(QtApplication):
 
             qmlRegisterType(QUrl.fromLocalFile(path), "Cura", 1, 0, type_name)
 
-    ##  Get the backend of the application (the program that does the heavy lifting).
-    #   The backend is also a QObject, which can be used from qml.
-    #   \returns Backend \type{Backend}
-    @pyqtSlot(result = "QObject*")
-    def getBackend(self):
-        return self._backend
-
     def onSelectionChanged(self):
         if Selection.hasSelection():
             if self.getController().getActiveTool():