Cleanup: match names between functions & declarations

This commit is contained in:
2022-08-23 11:05:50 +10:00
parent a65e4e6139
commit ee60aa9d01
13 changed files with 19 additions and 23 deletions

View File

@@ -701,12 +701,12 @@ void setLocalConstraint(TransInfo *t, int mode, const char text[])
}
}
void setUserConstraint(TransInfo *t, int mode, const char ftext[])
void setUserConstraint(TransInfo *t, int mode, const char text_[])
{
char text[256];
const short orientation = transform_orientation_or_default(t);
const char *spacename = transform_orientations_spacename_get(t, orientation);
BLI_snprintf(text, sizeof(text), ftext, spacename);
BLI_snprintf(text, sizeof(text), text_, spacename);
switch (orientation) {
case V3D_ORIENT_LOCAL: