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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-02-12 04:09:48 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2012-02-12 04:09:48 +0400
commit5c5685f6c5bfc9a6c838aa837f1b5980127bcbc3 (patch)
tree3be4711bfe8b23cecee40c0cb9d0c041b66e7c0f /source/blender/makesrna/intern/rna_ID.c
parenteecfa9473c985024128567fda33f8fd19bbda7a8 (diff)
parent24fc50907d811823c2d78fd03080376b0089c6e9 (diff)
Merged changes in the trunk up to revision 44039.
Diffstat (limited to 'source/blender/makesrna/intern/rna_ID.c')
-rw-r--r--source/blender/makesrna/intern/rna_ID.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index 964c44984ca..917cac0196c 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -235,7 +235,7 @@ StructRNA *rna_PropertyGroup_register(Main *UNUSED(bmain), ReportList *reports,
/* note: it looks like there is no length limit on the srna id since its
* just a char pointer, but take care here, also be careful that python
- * owns the string pointer which it could potentually free while blender
+ * owns the string pointer which it could potentially free while blender
* is running. */
if(BLI_strnlen(identifier, MAX_IDPROP_NAME) == MAX_IDPROP_NAME) {
BKE_reportf(reports, RPT_ERROR, "registering id property class: '%s' is too long, maximum length is " STRINGIFY(MAX_IDPROP_NAME), identifier);