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/test/gears/GHOST_Test.cpp')
-rw-r--r--intern/ghost/test/gears/GHOST_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/ghost/test/gears/GHOST_Test.cpp b/intern/ghost/test/gears/GHOST_Test.cpp
index d6c8f25707c..f58a220055f 100644
--- a/intern/ghost/test/gears/GHOST_Test.cpp
+++ b/intern/ghost/test/gears/GHOST_Test.cpp
@@ -698,19 +698,19 @@ int main(int /*argc*/, char ** /*argv*/)
KEY_ALL_ACCESS);
if (lresult == ERROR_SUCCESS)
- printf("Succesfully opened key\n");
+ printf("Successfully opened key\n");
#if 0
lresult = regkey.QueryValue(&keyValue, "StereoEnable");
if (lresult == ERROR_SUCCESS)
- printf("Succesfully queried key\n");
+ printf("Successfully queried key\n");
#endif
lresult = regkey.SetValue(HKEY_LOCAL_MACHINE, "SOFTWARE\\NVIDIA Corporation\\Global\\Stereo3D\\StereoEnable",
"1");
if (lresult == ERROR_SUCCESS)
- printf("Succesfully set value for key\n");
+ printf("Successfully set value for key\n");
regkey.Close();
if (lresult == ERROR_SUCCESS)
- printf("Succesfully closed key\n");
+ printf("Successfully closed key\n");
// regkey.Write("2");
}
#endif // WIN32