[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27912] branches/soc-2008-mxcurioni/source /blender: Fixed a compiler error in AppCanvas.h (thanks paulhart2).

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Thu Apr 1 03:15:48 CEST 2010


Revision: 27912
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27912
Author:   kjym3
Date:     2010-04-01 03:15:23 +0200 (Thu, 01 Apr 2010)

Log Message:
-----------
Fixed a compiler error in AppCanvas.h (thanks paulhart2).  Also fixed
a compiler warning in pipeline.c with regard to the missing prototype 
definition of free_libblock().

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.h
    branches/soc-2008-mxcurioni/source/blender/render/intern/source/pipeline.c

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.h	2010-03-31 23:13:08 UTC (rev 27911)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/application/AppCanvas.h	2010-04-01 01:15:23 UTC (rev 27912)
@@ -40,7 +40,7 @@
   /*! accessors */
   virtual int width() const ;
   virtual int height() const ;
-  virtual BBox<Vec2i> AppCanvas::border() const ;
+  virtual BBox<Vec2i> border() const ;
 
 	AppView *_pViewer;
   inline const AppView * viewer() const {return _pViewer;}

Modified: branches/soc-2008-mxcurioni/source/blender/render/intern/source/pipeline.c
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/render/intern/source/pipeline.c	2010-03-31 23:13:08 UTC (rev 27911)
+++ branches/soc-2008-mxcurioni/source/blender/render/intern/source/pipeline.c	2010-04-01 01:15:23 UTC (rev 27912)
@@ -42,6 +42,7 @@
 #include "BKE_utildefines.h"
 #include "BKE_global.h"
 #include "BKE_image.h"
+#include "BKE_library.h"
 #include "BKE_main.h"
 #include "BKE_node.h"
 #include "BKE_object.h"





More information about the Bf-blender-cvs mailing list