[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13965] trunk/blender/intern/ghost/intern/ GHOST_SystemWin32.cpp: change error in typing

Ricki Myers antihc3 at gmail.com
Tue Mar 4 03:43:52 CET 2008


Revision: 13965
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13965
Author:   themyers
Date:     2008-03-04 03:43:51 +0100 (Tue, 04 Mar 2008)

Log Message:
-----------
change error in typing
GlobalLock on line 914

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp	2008-03-04 00:41:30 UTC (rev 13964)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp	2008-03-04 02:43:51 UTC (rev 13965)
@@ -911,7 +911,7 @@
 			EmptyClipboard();
 			
 			clipbuffer = LocalAlloc(LMEM_FIXED,((strlen(buffer)+1)));
-			data = (char*)GobalLock(clipbuffer);
+			data = (char*)GlobalLock(clipbuffer);
 
 			strcpy(data, (char*)buffer);
 			data[strlen(buffer)] = '\0';





More information about the Bf-blender-cvs mailing list