Skip to content
Permalink
Browse files
[processing] add missed error() method
  • Loading branch information
alexbruy committed Aug 23, 2016
1 parent 50593f0 commit 1369794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
@@ -172,6 +172,9 @@ def setText(self, text):
self.setInfo(text, False)
QCoreApplication.processEvents()

def error(self, mgs):
self.setInfo(msg, error=True)

def setParamValues(self):
pass

@@ -37,16 +37,16 @@ def setText(self, text):
def setPercentage(self, i):
pass

def setInfo(self, _):
def setInfo(self, msg):
pass

def setCommand(self, _):
def setCommand(self, msg):
pass

def setDebugInfo(self, _):
def setDebugInfo(self, msg):
pass

def setConsoleInfo(self, _):
def setConsoleInfo(self, msg):
pass

def close(self):

0 comments on commit 1369794

Please sign in to comment.