[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14114] branches/ndof/intern/ghost/intern/ GHOST_C-api.cpp: forgot return value in C-api

JLuc Peuriere jlp at nerim.net
Fri Mar 14 20:44:32 CET 2008


Revision: 14114
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14114
Author:   lukep
Date:     2008-03-14 20:44:32 +0100 (Fri, 14 Mar 2008)

Log Message:
-----------
forgot return value in C-api

spotted by JM Soler

Modified Paths:
--------------
    branches/ndof/intern/ghost/intern/GHOST_C-api.cpp

Modified: branches/ndof/intern/ghost/intern/GHOST_C-api.cpp
===================================================================
--- branches/ndof/intern/ghost/intern/GHOST_C-api.cpp	2008-03-14 18:53:51 UTC (rev 14113)
+++ branches/ndof/intern/ghost/intern/GHOST_C-api.cpp	2008-03-14 19:44:32 UTC (rev 14114)
@@ -268,7 +268,7 @@
 {
 	GHOST_ISystem* system = (GHOST_ISystem*) systemhandle;
 
-    system->openNDOF((GHOST_IWindow*) windowhandle,
+    return system->openNDOF((GHOST_IWindow*) windowhandle,
         setNdofLibraryInit, setNdofLibraryShutdown, setNdofDeviceOpen);
 //	original patch
 //        setNdofLibraryInit, setNdofLibraryShutdown, setNdofDeviceOpen, setNdofEventHandler);





More information about the Bf-blender-cvs mailing list