[sword-svn] r2182 - in trunk: include src/keys

scribe at www.crosswire.org scribe at www.crosswire.org
Mon Jul 14 19:25:55 MST 2008


Author: scribe
Date: 2008-07-14 19:25:55 -0700 (Mon, 14 Jul 2008)
New Revision: 2182

Modified:
   trunk/include/swmodule.h
   trunk/src/keys/versetreekey.cpp
Log:
Usually 'this' is implied, but added it to be sure EVC3 didn't think we were actually trying to call a static.


Modified: trunk/include/swmodule.h
===================================================================
--- trunk/include/swmodule.h	2008-07-15 01:58:11 UTC (rev 2181)
+++ trunk/include/swmodule.h	2008-07-15 02:25:55 UTC (rev 2182)
@@ -657,14 +657,15 @@
 	 */
 	virtual bool isProcessEntryAttributes() const { return procEntAttr; }
 
-	// OPERATORS -----------------------------------------------------------------
 	
+	// SWSearchable Interface Impl -----------------------------------------------
 	virtual signed char createSearchFramework(
 			void (*percent) (char, void *) = &nullPercent,
 			void *percentUserData = 0);
 	virtual void deleteSearchFramework();
 	virtual bool hasSearchFramework();
 
+	// OPERATORS -----------------------------------------------------------------
 	SWMODULE_OPERATORS
 
 };

Modified: trunk/src/keys/versetreekey.cpp
===================================================================
--- trunk/src/keys/versetreekey.cpp	2008-07-15 01:58:11 UTC (rev 2181)
+++ trunk/src/keys/versetreekey.cpp	2008-07-15 02:25:55 UTC (rev 2182)
@@ -145,7 +145,7 @@
 
 void VerseTreeKey::positionChanged() {
 	if (!internalPosChange) {
-		TreeKey *tkey = TreeKey::PositionChangeListener::getTreeKey();
+		TreeKey *tkey = this->TreeKey::PositionChangeListener::getTreeKey();
 		int saveError = tkey->Error();
 		long bookmark = tkey->getOffset();
 		SWBuf path;




More information about the sword-cvs mailing list