[sword-svn] r3869 - trunk/utilities

scribe at crosswire.org scribe at crosswire.org
Sun Oct 10 13:20:56 EDT 2021


Author: scribe
Date: 2021-10-10 13:20:55 -0400 (Sun, 10 Oct 2021)
New Revision: 3869

Modified:
   trunk/utilities/mod2imp.cpp
Log:
updated mod2imp to reflect new signature of stripText


Modified: trunk/utilities/mod2imp.cpp
===================================================================
--- trunk/utilities/mod2imp.cpp	2021-10-10 17:18:41 UTC (rev 3868)
+++ trunk/utilities/mod2imp.cpp	2021-10-10 17:20:55 UTC (rev 3869)
@@ -119,7 +119,7 @@
 
 	for ((*module) = TOP; !module->popError(); (*module)++) {
 		std::cout << "$$$" << module->getKeyText() << std::endl;
-		std::cout << ((render) ? module->renderText().c_str() : (strip) ? module->stripText() : module->getRawEntry()) << "\n";
+		std::cout << ((render) ? module->renderText().c_str() : (strip) ? module->stripText().c_str() : module->getRawEntry()) << "\n";
 	}
 
 	cout << endl;



More information about the sword-cvs mailing list