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:
authorBrecht Van Lommel <brecht@blender.org>2020-08-26 16:50:48 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-08-26 20:26:38 +0300
commitf699ba3d30ec1a5cb8d61f7522787a7b701ea9d2 (patch)
tree9e2d3c10e788f1eec685002ba87ecd28b7c7ff5e /source/blender/editors/space_file/file_ops.c
parent9de18c361bb4efa11016b6a6671b6409cfe5a2fb (diff)
Cleanup: better naming and no bad level access in BLI_winstuff
Diffstat (limited to 'source/blender/editors/space_file/file_ops.c')
-rw-r--r--source/blender/editors/space_file/file_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index 83c0e60168b..8c4b2a1b8a6 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -2297,7 +2297,7 @@ static void file_expand_directory(bContext *C)
}
#else
{
- get_default_root(sfile->params->dir);
+ BLI_windows_get_default_root_dir(sfile->params->dir);
}
/* change "C:" --> "C:\", [#28102] */
else if ((isalpha(sfile->params->dir[0]) && (sfile->params->dir[1] == ':')) &&