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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-30 06:41:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-30 06:41:21 +0300
commit5d7ee02b17f2afad574609be3450eb8e5c0f18d2 (patch)
treef649e4603a382b2e96701bf2aacaeb62a5967604 /source/blender/collada/ExtraHandler.cpp
parentd9fb06f87694a45dc6656a32b72b85ba8ade3a34 (diff)
Cleanup: comments (long lines) in collada
Diffstat (limited to 'source/blender/collada/ExtraHandler.cpp')
-rw-r--r--source/blender/collada/ExtraHandler.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/source/blender/collada/ExtraHandler.cpp b/source/blender/collada/ExtraHandler.cpp
index 5aed0050a06..8109952b4ae 100644
--- a/source/blender/collada/ExtraHandler.cpp
+++ b/source/blender/collada/ExtraHandler.cpp
@@ -35,9 +35,9 @@ ExtraHandler::~ExtraHandler()
bool ExtraHandler::elementBegin(const char *elementName, const char **attributes)
{
- // \todo attribute handling for profile tags
+ /* \todo attribute handling for profile tags */
currentElement = std::string(elementName);
- //addToSidTree(attributes[0], attributes[1]);
+ // addToSidTree(attributes[0], attributes[1]);
return true;
}
@@ -72,7 +72,11 @@ bool ExtraHandler::parseElement(const char *profileName,
COLLADAFW::Object *object)
{
if (BLI_strcaseeq(profileName, "blender")) {
- //printf("In parseElement for supported profile %s for id %s\n", profileName, uniqueId.toAscii().c_str());
+#if 0
+ printf("In parseElement for supported profile %s for id %s\n",
+ profileName,
+ uniqueId.toAscii().c_str());
+#endif
currentUid = uniqueId;
ExtraTags *et = dimp->getExtraTags(uniqueId);
if (!et) {
@@ -82,6 +86,7 @@ bool ExtraHandler::parseElement(const char *profileName,
currentExtraTags = et;
return true;
}
- //printf("In parseElement for unsupported profile %s for id %s\n", profileName, uniqueId.toAscii().c_str());
+ // printf("In parseElement for unsupported profile %s for id %s\n", profileName,
+ // uniqueId.toAscii().c_str());
return false;
}