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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-04-01 05:15:23 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-04-01 05:15:23 +0400
commit65b2ef5b15ae56758f7097df98dbce9ba3fe1454 (patch)
tree2a4568b34d48ea678c8de56ab9aaec4be2bf5c33 /source/blender/freestyle/intern/application/AppCanvas.h
parentfdffaacb8a909e6f5d7ecb984eee7b51ad986fbd (diff)
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().
Diffstat (limited to 'source/blender/freestyle/intern/application/AppCanvas.h')
-rwxr-xr-xsource/blender/freestyle/intern/application/AppCanvas.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/application/AppCanvas.h b/source/blender/freestyle/intern/application/AppCanvas.h
index 5f27f97c8d5..42b3c7fdb50 100755
--- a/source/blender/freestyle/intern/application/AppCanvas.h
+++ b/source/blender/freestyle/intern/application/AppCanvas.h
@@ -40,7 +40,7 @@ public:
/*! 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;}