[Bf-blender-cvs] [a6b4eaeedef] asset-lite-greasepencil: Fix compiler errors after merge master

Antonio Vazquez noreply at git.blender.org
Tue Jan 24 16:58:12 CET 2023


Commit: a6b4eaeedefba665332d0ca2f116d0309b182a90
Author: Antonio Vazquez
Date:   Tue Jan 24 16:58:06 2023 +0100
Branches: asset-lite-greasepencil
https://developer.blender.org/rBa6b4eaeedefba665332d0ca2f116d0309b182a90

Fix compiler errors after merge master

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

M	source/blender/editors/space_view3d/space_view3d.cc

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

diff --git a/source/blender/editors/space_view3d/space_view3d.cc b/source/blender/editors/space_view3d/space_view3d.cc
index abff98c6716..41adf0b087d 100644
--- a/source/blender/editors/space_view3d/space_view3d.cc
+++ b/source/blender/editors/space_view3d/space_view3d.cc
@@ -645,10 +645,10 @@ static char *view3d_object_data_drop_tooltip(bContext * /*C*/,
   return BLI_strdup(TIP_("Create object instance from object-data"));
 }
 
-static char *view3d_gpencil_data_drop_tooltip(bContext *UNUSED(C),
-                                              wmDrag *UNUSED(drag),
-                                              const int UNUSED(xy[2]),
-                                              wmDropBox *UNUSED(drop))
+static char *view3d_gpencil_data_drop_tooltip(bContext * /*C*/,
+                                              wmDrag * /*drag*/,
+                                              const int /*xy*/[2],
+                                              wmDropBox * /*drop*/)
 {
   return BLI_strdup(TIP_("Add strokes to active object"));
 }



More information about the Bf-blender-cvs mailing list