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>2020-03-04 13:10:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-04 13:13:32 +0300
commita9dc1f6d00a9ca2606504e401650d2b5be318855 (patch)
treefbe119bbd46e1e14176d7861f65a00e1674905de /source/blender/editors/space_file/file_ops.c
parentfb330dd11098b9df379d84fe181ce7966d89674c (diff)
Cleanup: avoid the term old when storing/restoring context variables
Diffstat (limited to 'source/blender/editors/space_file/file_ops.c')
-rw-r--r--source/blender/editors/space_file/file_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index 9281653efa5..ec89ea1be7e 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -1722,7 +1722,7 @@ static int file_smoothscroll_invoke(bContext *C, wmOperator *UNUSED(op), const w
{
ScrArea *sa = CTX_wm_area(C);
SpaceFile *sfile = CTX_wm_space_file(C);
- ARegion *ar, *oldar = CTX_wm_region(C);
+ ARegion *ar, *ar_ctx = CTX_wm_region(C);
const bool is_horizontal = (sfile->layout->flag & FILE_LAYOUT_HOR) != 0;
int i;
@@ -1886,7 +1886,7 @@ static int file_smoothscroll_invoke(bContext *C, wmOperator *UNUSED(op), const w
ED_region_tag_redraw(ar);
/* and restore context */
- CTX_wm_region_set(C, oldar);
+ CTX_wm_region_set(C, ar_ctx);
return OPERATOR_FINISHED;
}