Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-12-26 23:08:32 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-12-26 23:08:41 +0300
commit20b438d523c9c2fb8577602c053b4f51267300b6 (patch)
treeacf6485f181c3176f60cc37a6e7b06934b89bb25 /source/blender/blenkernel/BKE_screen.h
parent5cf993f951bc87d006279f7e33b210a4341fca1b (diff)
Cleanup: Use array for BKE cursor functions
Missed this function in rB67525b88d2e
Diffstat (limited to 'source/blender/blenkernel/BKE_screen.h')
-rw-r--r--source/blender/blenkernel/BKE_screen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_screen.h b/source/blender/blenkernel/BKE_screen.h
index db4c66959c5..3d8b48e5192 100644
--- a/source/blender/blenkernel/BKE_screen.h
+++ b/source/blender/blenkernel/BKE_screen.h
@@ -473,8 +473,8 @@ struct ARegion *BKE_area_find_region_xy(struct ScrArea *area,
*/
struct ARegion *BKE_screen_find_region_xy(struct bScreen *screen,
const int regiontype,
- int x,
- int y) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1);
+ const int xy[2]) ATTR_WARN_UNUSED_RESULT
+ ATTR_NONNULL(1, 3);
struct ARegion *BKE_screen_find_main_region_at_xy(struct bScreen *screen,
const int space_type,