[sword-svn] r2031 - in trunk: . include src/utilfuns

jansorg at www.crosswire.org jansorg at www.crosswire.org
Sat Mar 3 13:00:08 MST 2007


Author: jansorg
Date: 2007-03-03 13:00:07 -0700 (Sat, 03 Mar 2007)
New Revision: 2031

Modified:
   trunk/ChangeLog
   trunk/include/Makefile.am
   trunk/src/utilfuns/swobject.cpp
Log:
make dist fix, stricmp fix

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-02-10 21:16:50 UTC (rev 2030)
+++ trunk/ChangeLog	2007-03-03 20:00:07 UTC (rev 2031)
@@ -1,6 +1,10 @@
 API ChangeLog	(see the ChangeLog in each 'apps' directory for
 		app specific changes)
 
+03-Mar-2007 	Joachim Ansorg <jansorg at crosswire.org>
+	Added osis morph segments filter include file to the dist
+	Fixed wrong stricmp in SWObject
+
 10-Dec-2006	Troy A. Griffitts <scribe at crosswire.org>
 	Added example: examples/cmdline/verserangeparse.cpp
 

Modified: trunk/include/Makefile.am
===================================================================
--- trunk/include/Makefile.am	2007-02-10 21:16:50 UTC (rev 2030)
+++ trunk/include/Makefile.am	2007-03-03 20:00:07 UTC (rev 2031)
@@ -58,6 +58,7 @@
 pkginclude_HEADERS += $(swincludedir)/osisredletterwords.h   
 pkginclude_HEADERS += $(swincludedir)/osisscripref.h   
 pkginclude_HEADERS += $(swincludedir)/osiswordjs.h   
+pkginclude_HEADERS += $(swincludedir)/osisvariants.h   
 
 pkginclude_HEADERS += $(swincludedir)/papyriplain.h
 pkginclude_HEADERS += $(swincludedir)/plainfootnotes.h

Modified: trunk/src/utilfuns/swobject.cpp
===================================================================
--- trunk/src/utilfuns/swobject.cpp	2007-02-10 21:16:50 UTC (rev 2030)
+++ trunk/src/utilfuns/swobject.cpp	2007-03-03 20:00:07 UTC (rev 2031)
@@ -28,7 +28,7 @@
 
 bool SWClass::isAssignableFrom(const char *className) const {
 	for (int i = 0; descends[i]; i++) {
-		if (!stricmp(descends[i], className))
+		if (!sword::stricmp(descends[i], className))
 			return true;
 	}
 	return false;




More information about the sword-cvs mailing list