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:
David Schulz
2019-09-11 10:35:46 +02:00
parent a8fa9c5f89
commit 75a0340a53

View File

@@ -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;