[sword-cvs] sword/src/modules/filters osisheadings.cpp,1.16,1.17

sword@www.crosswire.org sword@www.crosswire.org
Fri, 16 Apr 2004 04:27:45 -0700


Update of /cvs/core/sword/src/modules/filters
In directory www:/tmp/cvs-serv15561/src/modules/filters

Modified Files:
	osisheadings.cpp 
Log Message:
Fixed the last bugs; all is working now again as before the optimization (joachim)

Index: osisheadings.cpp
===================================================================
RCS file: /cvs/core/sword/src/modules/filters/osisheadings.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- osisheadings.cpp	16 Apr 2004 11:25:56 -0000	1.16
+++ osisheadings.cpp	16 Apr 2004 11:27:38 -0000	1.17
@@ -14,9 +14,6 @@
 #include <unixstr.h>
 #endif
 
-#include <iostream>
-using namespace std;
-
 SWORD_NAMESPACE_START
 
 const char oName[] = "Headings";
@@ -35,7 +32,6 @@
 
 
 char OSISHeadings::processText(SWBuf &text, const SWKey *key, const SWModule *module) {
-
 	SWBuf token;
 	bool intoken    = false;
 	bool hide       = false;
@@ -49,7 +45,7 @@
 	SWBuf orig = text;
 	const char *from = orig.c_str();
 	
- 	XMLTag tag;
+	XMLTag tag;
 
 	for (text = ""; *from; ++from) {
 		if (*from == '<') {