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
path: root/intern
diff options
context:
space:
mode:
authorRicki Myers <antihc3@gmail.com>2008-03-04 05:43:51 +0300
committerRicki Myers <antihc3@gmail.com>2008-03-04 05:43:51 +0300
commit6122ee1b21f7e8b8a7509e868e1db813f5fbd72b (patch)
tree845190506a11aa3bf9bd52cee9e299ad9ca34497 /intern
parentffcbff62dd569b880c39084889fe68be76f67f51 (diff)
change error in typing
GlobalLock on line 914
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_SystemWin32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp
index 0090b7ec93f..c423fbd29ad 100644
--- a/intern/ghost/intern/GHOST_SystemWin32.cpp
+++ b/intern/ghost/intern/GHOST_SystemWin32.cpp
@@ -911,7 +911,7 @@ void GHOST_SystemWin32::putClipboard(GHOST_TInt8 *buffer, int flag) const
EmptyClipboard();
clipbuffer = LocalAlloc(LMEM_FIXED,((strlen(buffer)+1)));
- data = (char*)GobalLock(clipbuffer);
+ data = (char*)GlobalLock(clipbuffer);
strcpy(data, (char*)buffer);
data[strlen(buffer)] = '\0';