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:
authorCampbell Barton <ideasman42@gmail.com>2011-11-03 07:00:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-03 07:00:45 +0400
commit1f291a69c1ba961bf96b6767fc7ce801c4ab5856 (patch)
tree2ff190e0c98ecd04a1d553035b5df1849fdd1c44 /source/blender/editors
parent4293f4738ce0ea1bb81260b12a6b64f98b6a3468 (diff)
correct spelling mistakes
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/include/ED_render.h2
-rw-r--r--source/blender/editors/space_outliner/outliner_tree.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/include/ED_render.h b/source/blender/editors/include/ED_render.h
index 8c0fa3a89a3..7461f5e9e9f 100644
--- a/source/blender/editors/include/ED_render.h
+++ b/source/blender/editors/include/ED_render.h
@@ -56,7 +56,7 @@ typedef struct RenderInfo {
short curtile, tottile, status;
rcti disprect; /* storage for view3d preview rect */
unsigned int* rect;
- struct Render *re; /* persistant render */
+ struct Render *re; /* persistent render */
} RenderInfo;
/* ri->status */
diff --git a/source/blender/editors/space_outliner/outliner_tree.c b/source/blender/editors/space_outliner/outliner_tree.c
index 925c4571a66..794f898a1fc 100644
--- a/source/blender/editors/space_outliner/outliner_tree.c
+++ b/source/blender/editors/space_outliner/outliner_tree.c
@@ -109,7 +109,7 @@
#define TS_CHUNK 128
/* ********************************************************* */
-/* Persistant Data */
+/* Persistent Data */
static void outliner_storage_cleanup(SpaceOops *soops)
{
@@ -156,7 +156,7 @@ static void outliner_storage_cleanup(SpaceOops *soops)
}
}
-static void check_persistant(SpaceOops *soops, TreeElement *te, ID *id, short type, short nr)
+static void check_persistent(SpaceOops *soops, TreeElement *te, ID *id, short type, short nr)
{
TreeStore *ts;
TreeStoreElem *tselem;
@@ -818,7 +818,7 @@ static TreeElement *outliner_add_element(SpaceOops *soops, ListBase *lb, void *i
/* add to the visual tree */
BLI_addtail(lb, te);
/* add to the storage */
- check_persistant(soops, te, id, type, index);
+ check_persistent(soops, te, id, type, index);
tselem= TREESTORE(te);
/* if we are searching for something expand to see child elements */