Rename everything "Printer" to either "Cura" or drop the prefix since it is no longer needed

This commit is contained in:
Arjen Hiemstra 2015-05-06 18:41:22 +02:00
parent 0a6562a8f1
commit cc7ce1d408
7 changed files with 18 additions and 24 deletions

View file

@ -37,7 +37,7 @@ import os.path
import numpy
numpy.seterr(all="ignore")
class PrinterApplication(QtApplication):
class CuraApplication(QtApplication):
def __init__(self):
if not hasattr(sys, "frozen"):
Resources.addResourcePath(os.path.join(os.path.abspath(os.path.dirname(__file__)), ".."))
@ -129,7 +129,7 @@ class PrinterApplication(QtApplication):
self.showSplashMessage(self._i18n_catalog.i18nc("Splash screen message", "Loading interface..."))
self.setMainQml(Resources.getPath(Resources.QmlFilesLocation, "Printer.qml"))
self.setMainQml(Resources.getPath(Resources.QmlFilesLocation, "Cura.qml"))
self.initializeEngine()
self.getStorageDevice("LocalFileStorage").removableDrivesChanged.connect(self._removableDrivesChanged)