E5Gui/E5ErrorMessage.py

branch
6_0_x
changeset 3989
2d9778d49159
parent 3776
ccb6eacb50e5
child 4021
195a471c327b
equal deleted inserted replaced
3988:947bd642b0de 3989:2d9778d49159
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