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:
authorSybren A. Stüvel <sybren@blender.org>2021-11-25 17:22:40 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-11-25 17:22:40 +0300
commit3652f5f758aafa2103519c3c0663ba8643b554c1 (patch)
treecde6022d74747015518ffc8ae4c650176617fbf7 /source/blender/editors/include/UI_tree_view.hh
parent9812a08848b8a5264948ae1e2a4b0343d2e7f9e2 (diff)
parentc91d1961596eb3ac0905010b63551951fc1fece7 (diff)
Merge remote-tracking branch 'origin/blender-v3.0-release'
Diffstat (limited to 'source/blender/editors/include/UI_tree_view.hh')
-rw-r--r--source/blender/editors/include/UI_tree_view.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/UI_tree_view.hh b/source/blender/editors/include/UI_tree_view.hh
index 7682570a5c6..0a054101e81 100644
--- a/source/blender/editors/include/UI_tree_view.hh
+++ b/source/blender/editors/include/UI_tree_view.hh
@@ -407,7 +407,7 @@ class AbstractTreeViewItemDropController {
* Execute the logic to apply a drop of the data dragged with \a drag onto/into the item this
* controller is for.
*/
- virtual bool on_drop(const wmDrag &drag) = 0;
+ virtual bool on_drop(struct bContext *C, const wmDrag &drag) = 0;
template<class TreeViewType> inline TreeViewType &tree_view() const;
};