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:
Diffstat (limited to 'intern/ghost/intern/GHOST_ISystemPaths.cpp')
-rw-r--r--intern/ghost/intern/GHOST_ISystemPaths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_ISystemPaths.cpp b/intern/ghost/intern/GHOST_ISystemPaths.cpp
index 581467fb666..6ebcb37ba06 100644
--- a/intern/ghost/intern/GHOST_ISystemPaths.cpp
+++ b/intern/ghost/intern/GHOST_ISystemPaths.cpp
@@ -44,7 +44,7 @@
# ifdef __APPLE__
# include "GHOST_SystemPathsCocoa.h"
# else
-# include "GHOST_SystemPathsX11.h"
+# include "GHOST_SystemPathsUnix.h"
# endif
#endif
@@ -62,7 +62,7 @@ GHOST_TSuccess GHOST_ISystemPaths::create()
# ifdef __APPLE__
m_systemPaths = new GHOST_SystemPathsCocoa();
# else
- m_systemPaths = new GHOST_SystemPathsX11();
+ m_systemPaths = new GHOST_SystemPathsUnix();
# endif
#endif
success = m_systemPaths != 0 ? GHOST_kSuccess : GHOST_kFailure;