From 59baaf11236133167042ccf117d25e7b8d3cf3f0 Mon Sep 17 00:00:00 2001 From: Playa Date: Mon, 22 Apr 2019 21:33:27 +0200 Subject: [PATCH] Fix param order in CancelClientMenu documentation (#982) --- plugins/include/menus.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/menus.inc b/plugins/include/menus.inc index e9750d31..98111775 100644 --- a/plugins/include/menus.inc +++ b/plugins/include/menus.inc @@ -920,10 +920,10 @@ native MenuSource GetClientMenu(int client, Handle hStyle=null); /** * Cancels a menu on a client. This will only affect non-external menus. * - * @param hStyle MenuStyle Handle, or INVALID_HANDLE to use the default style. * @param client Client index. * @param autoIgnore If true, no menus can be re-drawn on the client during * the cancellation process. + * @param hStyle MenuStyle Handle, or INVALID_HANDLE to use the default style. * @return True if a menu was cancelled, false otherwise. */ native bool CancelClientMenu(int client, bool autoIgnore=false, Handle hStyle=INVALID_HANDLE);