[Bf-blender-cvs] [06888a8970b] blender-v2.93-release: Fix compile warning

Hans Goudey noreply at git.blender.org
Sun Apr 18 18:59:20 CEST 2021


Commit: 06888a8970b78f16c44f4393b937948853394315
Author: Hans Goudey
Date:   Sun Apr 18 11:58:44 2021 -0500
Branches: blender-v2.93-release
https://developer.blender.org/rB06888a8970b78f16c44f4393b937948853394315

Fix compile warning

The order of the two parameters was incorrect.

===================================================================

M	source/blender/editors/space_outliner/outliner_tools.c

===================================================================

diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c
index c7b46cd640b..456c2079f27 100644
--- a/source/blender/editors/space_outliner/outliner_tools.c
+++ b/source/blender/editors/space_outliner/outliner_tools.c
@@ -602,8 +602,8 @@ static uiBlock *merged_element_search_menu(bContext *C, ARegion *region, void *d
                          NULL,
                          merged_element_search_update_fn,
                          data,
-                         NULL,
                          false,
+                         NULL,
                          merged_element_search_exec_fn,
                          NULL);
   UI_but_flag_enable(but, UI_BUT_ACTIVATE_ON_INIT);



More information about the Bf-blender-cvs mailing list