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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-09-09 22:03:44 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2008-09-09 22:03:44 +0400
commit449f210c464f95de3b0bcf641ed5ff046d215617 (patch)
treea8cdf95bfcccd1a48733a060b3b1e3a6e445fd7c /source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp
parent383956574d6cf406fe6463defa55a73d61c5aecf (diff)
* Make sure freestyle branch compiles with SCons/msvc9 on Windows. This was joint operation with mxcurioni :)
Diffstat (limited to 'source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp')
-rw-r--r--source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp b/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp
index 80acce599ca..6f11b5ffe0e 100644
--- a/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp
+++ b/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp
@@ -108,7 +108,7 @@ int SmoothingShader___init__( BPy_SmoothingShader* self, PyObject *args)
return -1;
}
- self->py_ss.ss = new SmoothingShader::SmoothingShader(i1, d2, d3, d4, d5, d6, d7, d8);
+ self->py_ss.ss = new SmoothingShader(i1, d2, d3, d4, d5, d6, d7, d8);
return 0;
}