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>2012-04-07 16:37:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-07 16:37:15 +0400
commit8fa17c5362a09d023bda999d4595f1762e5f52b9 (patch)
tree6d380e3f336e2740a24eead833501384df658fdd /source/blender/blenkernel/intern/blender.c
parent6482351ed9c3e022e02933709e4df1407a2ffbef (diff)
code cleanup: no functional changes
- memset(..., -1) is used incorrectly even though it worked: MOD_solidify.c - thanks Halley from IRC for noticing this. use fill_vn_i() instead. - quiet warnings in editmesh_slide.c - cleanup comments in bmesh and some other minor comment additions.
Diffstat (limited to 'source/blender/blenkernel/intern/blender.c')
-rw-r--r--source/blender/blenkernel/intern/blender.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c
index f111640145f..9c9b207970c 100644
--- a/source/blender/blenkernel/intern/blender.c
+++ b/source/blender/blenkernel/intern/blender.c
@@ -272,7 +272,7 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, const char *filepath
CTX_wm_menu_set(C, NULL);
}
- /* this can happen when active scene was lib-linked, and doesnt exist anymore */
+ /* this can happen when active scene was lib-linked, and doesn't exist anymore */
if (CTX_data_scene(C)==NULL) {
CTX_data_scene_set(C, bfd->main->scene.first);
CTX_wm_screen(C)->scene= CTX_data_scene(C);
@@ -472,7 +472,7 @@ static int read_undosave(bContext *C, UndoElem *uel)
char mainstr[sizeof(G.main->name)];
int success=0, fileflags;
- /* This is needed so undoing/redoing doesnt crash with threaded previews going */
+ /* This is needed so undoing/redoing doesn't crash with threaded previews going */
WM_jobs_stop_all(CTX_wm_manager(C));
BLI_strncpy(mainstr, G.main->name, sizeof(mainstr)); /* temporal store */