[mapguide-commits] r8368 - trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Sep 29 06:27:07 PDT 2014


Author: jng
Date: 2014-09-29 06:27:07 -0700 (Mon, 29 Sep 2014)
New Revision: 8368

Modified:
   trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/SkipList.h
   trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/Vector.h
Log:
#2491: Replace references to '_tValue' with 'this->_tValue'

Modified: trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/SkipList.h
===================================================================
--- trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/SkipList.h	2014-09-29 13:19:58 UTC (rev 8367)
+++ trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/SkipList.h	2014-09-29 13:27:07 UTC (rev 8368)
@@ -868,7 +868,7 @@
             // If the current key is equal to that supplied then just update the value
             // and we are done.
             //
-        if ((pCurrentNode != NULL) && _tEquals(pCurrentNode->key(), rKey))
+        if ((pCurrentNode != NULL) && this->_tEquals(pCurrentNode->key(), rKey))
         {
                 //
                 // Iterate through all previously last-visited nodes of each level and update
@@ -957,7 +957,7 @@
             // If the current key is equal to that supplied then just update the value
             // and we are done.
             //
-        if ((pCurrentNode != NULL) && (_tEquals(pCurrentNode->key(), rKey)))
+        if ((pCurrentNode != NULL) && (this->_tEquals(pCurrentNode->key(), rKey)))
         {                  
             if (bReplace)
             {
@@ -1066,7 +1066,7 @@
             //
             // If the node was found then return the value. 
             //
-        if ((pCurrentNode != NULL) && (_tEquals(pCurrentNode->key(), rKey)))
+        if ((pCurrentNode != NULL) && (this->_tEquals(pCurrentNode->key(), rKey)))
         {
             return pCurrentNode;
         }

Modified: trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/Vector.h
===================================================================
--- trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/Vector.h	2014-09-29 13:19:58 UTC (rev 8367)
+++ trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/Vector.h	2014-09-29 13:27:07 UTC (rev 8368)
@@ -560,7 +560,7 @@
         _tSTLConstIterator iter = this->_oVector.begin();
         for (; iter!=this->_oVector.end(); ++iter)
         {
-            if (_tEquals(*iter, oValue))
+            if (this->_tEquals(*iter, oValue))
             {
                 ++nCount;
             }
@@ -588,7 +588,7 @@
         _tSTLConstIterator iter = this->_oVector.begin();
         for (; iter!=this->_oVector.end(); ++iter)
         {
-            if (_tEquals( oValue, *iter ))
+            if (this->_tEquals( oValue, *iter ))
             {
                 return true;
             }
@@ -619,7 +619,7 @@
         unsigned int i = 0;
         for (; it != this->_oVector.end(); ++it, ++i)
         {
-            if (_tEquals( oValue, *it ))
+            if (this->_tEquals( oValue, *it ))
             {
                 oIndices.push_back( i );
             }



More information about the mapguide-commits mailing list