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>2014-02-14 09:12:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-14 09:12:41 +0400
commitc221717f707e13f52413a398a8010f545bc3d109 (patch)
tree99fe5ca3c84a81b8b862bd0fa33234fe0d108ca6 /intern/ghost
parentdd1e02432ebdb2e4131e3f82f0c99e5db9aaa247 (diff)
NDOF/X11: incorrect dynamic_cast
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_SystemX11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp
index 1d625a5329f..9900f7e153f 100644
--- a/intern/ghost/intern/GHOST_SystemX11.cpp
+++ b/intern/ghost/intern/GHOST_SystemX11.cpp
@@ -583,7 +583,7 @@ processEvents(
}
#ifdef WITH_INPUT_NDOF
- if (dynamic_cast<GHOST_NDOFManagerX11 *>(m_ndofManager)->processEvents()) {
+ if (static_cast<GHOST_NDOFManagerX11 *>(m_ndofManager)->processEvents()) {
anyProcessed = true;
}
#endif