From 75a0340a5338a2f31af96b49ef1a85a475494ac0 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Wed, 11 Sep 2019 10:35:46 +0200 Subject: [PATCH] cdbext: fix arg order in function declaration Fixes: QTCREATORBUG-22921 Change-Id: I1fa94565e550a5ca1fa68fc032136fd42fa4972f Reviewed-by: Christian Stenger --- src/libs/qtcreatorcdbext/extensioncontext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/qtcreatorcdbext/extensioncontext.h b/src/libs/qtcreatorcdbext/extensioncontext.h index 1cdbb77a927..e1a27f3a9ae 100644 --- a/src/libs/qtcreatorcdbext/extensioncontext.h +++ b/src/libs/qtcreatorcdbext/extensioncontext.h @@ -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;