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:
authorJacques Lucke <jacques@blender.org>2020-09-11 12:21:53 +0300
committerJacques Lucke <jacques@blender.org>2020-09-11 12:21:53 +0300
commit1025b5b924ce7a25b4db9b63f43cd2bba55fbede (patch)
treeec2fe6f85fb639817394f28843ac1e3e00212c69
parentff4578a6e7dd0f8254ba91b8b44f4fa88a64c8bb (diff)
Cleanup: make format
-rw-r--r--source/blender/blenkernel/BKE_customdata.h6
-rw-r--r--source/blender/blenlib/intern/path_util.c2
-rw-r--r--source/blender/draw/engines/overlay/shaders/edit_uv_edges_vert.glsl2
-rw-r--r--source/blender/makesrna/intern/rna_space.c8
4 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h
index d21fe5afa7e..fea9bbe9bb5 100644
--- a/source/blender/blenkernel/BKE_customdata.h
+++ b/source/blender/blenkernel/BKE_customdata.h
@@ -570,9 +570,9 @@ void CustomData_data_transfer(const struct MeshPairRemap *me_remap,
/* .blend file I/O */
void CustomData_blend_write_prepare(struct CustomData *data,
- struct CustomDataLayer **r_write_layers,
- struct CustomDataLayer *write_layers_buff,
- size_t write_layers_size);
+ struct CustomDataLayer **r_write_layers,
+ struct CustomDataLayer *write_layers_buff,
+ size_t write_layers_size);
void CustomData_blend_write(struct BlendWriter *writer,
struct CustomData *data,
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index 18a6e8a3525..6328c887063 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -1300,7 +1300,7 @@ void BLI_setenv_if_new(const char *env, const char *val)
/**
* Get an env var, result has to be used immediately.
*
-* On windows getenv gets its variables from a static copy of the environment variables taken at
+ * On windows getenv gets its variables from a static copy of the environment variables taken at
* process start-up, causing it to not pick up on environment variables created during runtime.
* This function uses an alternative method to get environment variables that does pick up on
* runtime environment variables.
diff --git a/source/blender/draw/engines/overlay/shaders/edit_uv_edges_vert.glsl b/source/blender/draw/engines/overlay/shaders/edit_uv_edges_vert.glsl
index 3db6cc1d3c1..4661cf248e6 100644
--- a/source/blender/draw/engines/overlay/shaders/edit_uv_edges_vert.glsl
+++ b/source/blender/draw/engines/overlay/shaders/edit_uv_edges_vert.glsl
@@ -21,7 +21,7 @@ void main()
bool is_select = (flag & VERT_UV_SELECT) != 0;
selectionFac = is_select ? 1.0 : 0.0;
- /* Move selected edges to the top
+ /* Move selected edges to the top
* Vertices are between 0.0 and 0.2, Edges between 0.2 and 0.4
* actual pixels are at 0.75, 1.0 is used for the background. */
float depth = is_select ? 0.25 : 0.35;
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 66d7685b3a6..794b516489a 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2971,10 +2971,10 @@ static void rna_def_space_outliner(BlenderRNA *brna)
"View Layer",
"Display collections and objects in the view layer"},
{SO_SEQUENCE,
- "SEQUENCE",
- ICON_SEQUENCE,
- "Video Sequencer",
- "Display data belonging to the Video Sequencer"},
+ "SEQUENCE",
+ ICON_SEQUENCE,
+ "Video Sequencer",
+ "Display data belonging to the Video Sequencer"},
{SO_LIBRARIES,
"LIBRARIES",
ICON_FILE_BLEND,