From 5d7ee02b17f2afad574609be3450eb8e5c0f18d2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Apr 2019 13:41:21 +1000 Subject: Cleanup: comments (long lines) in collada --- source/blender/collada/ExtraHandler.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'source/blender/collada/ExtraHandler.cpp') 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; } -- cgit v1.2.3