[sword-svn] r2068 - trunk/include

scribe at www.crosswire.org scribe at www.crosswire.org
Thu Aug 30 23:40:23 MST 2007


Author: scribe
Date: 2007-08-30 23:40:23 -0700 (Thu, 30 Aug 2007)
New Revision: 2068

Modified:
   trunk/include/gbfheadings.h
   trunk/include/gbfmorph.h
   trunk/include/gbfplain.h
   trunk/include/thmlplain.h
Log:
fixed protection of method.
fixed formating.


Modified: trunk/include/gbfheadings.h
===================================================================
--- trunk/include/gbfheadings.h	2007-08-31 06:24:38 UTC (rev 2067)
+++ trunk/include/gbfheadings.h	2007-08-31 06:40:23 UTC (rev 2068)
@@ -31,7 +31,7 @@
 public:
 	GBFHeadings();
 	virtual ~GBFHeadings();
-	virtual char processText (SWBuf &text, const SWKey * key = 0, const SWModule *module = 0);
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 };
 
 SWORD_NAMESPACE_END

Modified: trunk/include/gbfmorph.h
===================================================================
--- trunk/include/gbfmorph.h	2007-08-31 06:24:38 UTC (rev 2067)
+++ trunk/include/gbfmorph.h	2007-08-31 06:40:23 UTC (rev 2068)
@@ -31,7 +31,7 @@
 public:
 	GBFMorph();
 	virtual ~GBFMorph();
-	virtual char processText(SWBuf &text, const SWKey * key = 0, const SWModule *module = 0);
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 };
 
 SWORD_NAMESPACE_END

Modified: trunk/include/gbfplain.h
===================================================================
--- trunk/include/gbfplain.h	2007-08-31 06:24:38 UTC (rev 2067)
+++ trunk/include/gbfplain.h	2007-08-31 06:40:23 UTC (rev 2068)
@@ -30,7 +30,7 @@
 class SWDLLEXPORT GBFPlain : public SWFilter {
 public:
 	GBFPlain();
-	virtual char processText (SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 };
 
 SWORD_NAMESPACE_END

Modified: trunk/include/thmlplain.h
===================================================================
--- trunk/include/thmlplain.h	2007-08-31 06:24:38 UTC (rev 2067)
+++ trunk/include/thmlplain.h	2007-08-31 06:40:23 UTC (rev 2068)
@@ -28,10 +28,9 @@
 /** this filter converts ThML text to plain text
  */
 class SWDLLEXPORT ThMLPlain : public SWFilter {
-protected:
-	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 public:
 	ThMLPlain();
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 };
 
 SWORD_NAMESPACE_END




More information about the sword-cvs mailing list