[Bf-blender-cvs] [e17ca70] gooseberry_farm: Fix outdated stub factory class for pointcache when Alembic is disabled.

Lukas Tönne noreply at git.blender.org
Wed Jun 10 11:26:00 CEST 2015


Commit: e17ca707de57ace0dde744678165c51b04d47aa9
Author: Lukas Tönne
Date:   Fri Jun 5 13:01:07 2015 +0200
Branches: gooseberry_farm
https://developer.blender.org/rBe17ca707de57ace0dde744678165c51b04d47aa9

Fix outdated stub factory class for pointcache when Alembic is disabled.

===================================================================

M	source/blender/pointcache/PTC_api.cpp

===================================================================

diff --git a/source/blender/pointcache/PTC_api.cpp b/source/blender/pointcache/PTC_api.cpp
index 6f4f6da..3e65939 100644
--- a/source/blender/pointcache/PTC_api.cpp
+++ b/source/blender/pointcache/PTC_api.cpp
@@ -52,7 +52,7 @@ using namespace PTC;
 class StubFactory : public Factory {
 	const std::string &get_default_extension() { static std::string ext = ""; return ext; }
 	WriterArchive *open_writer_archive(double /*fps*/, float /*start_frame*/, const std::string &/*name*/, PTCArchiveResolution /*resolutions*/,
-	                                   const char */*app_name*/, const char */*description*/, const struct tm */*t*/, ErrorHandler */*error_handler*/) { return NULL; }
+	                                   const char */*app_name*/, const char */*description*/, const struct tm */*time*/, struct IDProperty */*metadata*/, ErrorHandler */*error_handler*/) { return NULL; }
 	ReaderArchive *open_reader_archive(double /*fps*/, float /*start_frame*/, const std::string &/*name*/, ErrorHandler * /*error_handler*/) { return NULL; }
 	void slice(ReaderArchive * /*in*/, WriterArchive * /*out*/, float /*start_frame*/, float /*end_frame*/) {}
 	Writer *create_writer_object(const std::string &/*name*/, Scene */*scene*/, Object */*ob*/) { return NULL; }




More information about the Bf-blender-cvs mailing list