forked from qt-creator/qt-creator
cdbext: fix arg order in function declaration
Fixes: QTCREATORBUG-22921 Change-Id: I1fa94565e550a5ca1fa68fc032136fd42fa4972f Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -87,7 +87,7 @@ public:
|
||||
* 'X' exception, error. If the message is larger than outputChunkSize,
|
||||
* it needs to be split up in chunks, remainingChunks needs to indicate the number
|
||||
* of the following chunks (0 for just one chunk). */
|
||||
bool report(char code, int remainingChunks, int token, const char *serviceName, PCSTR Format, ...);
|
||||
bool report(char code, int token, int remainingChunks, const char *serviceName, PCSTR Format, ...);
|
||||
// Convenience for reporting potentially long messages in chunks
|
||||
bool reportLong(char code, int token, const char *serviceName, const std::string &message);
|
||||
ULONG executionStatus() const;
|
||||
|
Reference in New Issue
Block a user