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:
authorValentin <Poulpator>2020-09-30 13:09:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-30 13:11:06 +0300
commit5ac477805637f20b8ac5e742457fa8f304066d83 (patch)
tree6e0ccbf01192495fe030a2ac6c05edaf33e0376c /source/blender/editors/space_file
parentc0a563ffe814f227411f6b6ce6276a780245ccea (diff)
Cleanup: convert gforge task ID's to phabricator format
Cleanup old tracker task format to the new. e.g: [#34039] to T34039 Ref D8718
Diffstat (limited to 'source/blender/editors/space_file')
-rw-r--r--source/blender/editors/space_file/file_ops.c2
-rw-r--r--source/blender/editors/space_file/filesel.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index b3f9e8b6ef6..7ac3c209f2d 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -2309,7 +2309,7 @@ static void file_expand_directory(bContext *C)
{
BLI_windows_get_default_root_dir(sfile->params->dir);
}
- /* change "C:" --> "C:\", [#28102] */
+ /* change "C:" --> "C:\", T28102. */
else if ((isalpha(sfile->params->dir[0]) && (sfile->params->dir[1] == ':')) &&
(sfile->params->dir[2] == '\0')) {
sfile->params->dir[2] = '\\';
diff --git a/source/blender/editors/space_file/filesel.c b/source/blender/editors/space_file/filesel.c
index 9fc4e8936f4..f2d8f50299f 100644
--- a/source/blender/editors/space_file/filesel.c
+++ b/source/blender/editors/space_file/filesel.c
@@ -318,7 +318,7 @@ short ED_fileselect_set_params(SpaceFile *sfile)
folderlist_pushdir(sfile->folders_prev, sfile->params->dir);
- /* switching thumbnails needs to recalc layout [#28809] */
+ /* Switching thumbnails needs to recalc layout T28809. */
if (sfile->layout) {
sfile->layout->dirty = true;
}
@@ -969,7 +969,7 @@ int autocomplete_file(struct bContext *C, char *str, void *UNUSED(arg_v))
void ED_fileselect_clear(wmWindowManager *wm, Scene *owner_scene, SpaceFile *sfile)
{
- /* only NULL in rare cases - [#29734] */
+ /* only NULL in rare cases - T29734. */
if (sfile->files) {
filelist_readjob_stop(wm, owner_scene);
filelist_freelib(sfile->files);