E5Gui/E5ErrorMessage.py

changeset 3991
73731c4bf5bd
parent 3776
ccb6eacb50e5
child 4021
195a471c327b
equal deleted inserted replaced
3990:5dd6edf8540a 3991:73731c4bf5bd
91 """ 91 """
92 Module function handling messages. 92 Module function handling messages.
93 93
94 @param msgType type of the message (integer, QtMsgType) 94 @param msgType type of the message (integer, QtMsgType)
95 @param args message handler arguments, for PyQt4 message to be shown 95 @param args message handler arguments, for PyQt4 message to be shown
96 (bytes), for PyQt5 context information (QMessageLogContext) and 96 (bytes), for PyQt5 context information (QMessageLogContext) and
97 message to be shown (bytes) 97 message to be shown (bytes)
98 """ 98 """
99 if len(args) == 2: 99 if len(args) == 2:
100 context = args[0] 100 context = args[0]
101 message = args[1] 101 message = args[1]

eric ide

mercurial