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-04-03 08:15:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-03 08:15:57 +0300
commit04fe37f93116bd3b276ebe86d9fa53f18223ee6a (patch)
treef7f0c71bfb927e88ba50070b0f25e8e5c18578d5 /intern/ghost/intern/GHOST_SystemX11.cpp
parent71e543c68bc181606a70950d5fb80229f14223ea (diff)
Cleanup: quiet shadow warnings with ghost & mantaflow
Diffstat (limited to 'intern/ghost/intern/GHOST_SystemX11.cpp')
-rw-r--r--intern/ghost/intern/GHOST_SystemX11.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp
index a9d656a1c36..f076fe4c94a 100644
--- a/intern/ghost/intern/GHOST_SystemX11.cpp
+++ b/intern/ghost/intern/GHOST_SystemX11.cpp
@@ -910,8 +910,8 @@ void GHOST_SystemX11::processEvent(XEvent *xe)
vector<GHOST_IWindow *>::const_iterator win_end = win_vec.end();
for (; win_it != win_end; ++win_it) {
- GHOST_WindowX11 *window = static_cast<GHOST_WindowX11 *>(*win_it);
- window->refreshXInputDevices();
+ GHOST_WindowX11 *window_xinput = static_cast<GHOST_WindowX11 *>(*win_it);
+ window_xinput->refreshXInputDevices();
}
}
}