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

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Sep 29 06:58:02 PDT 2014


Author: jng
Date: 2014-09-29 06:58:02 -0700 (Mon, 29 Sep 2014)
New Revision: 8369

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

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:27:07 UTC (rev 8368)
+++ trunk/MgDev/Oem/DWFTK/develop/global/src/dwfcore/Vector.h	2014-09-29 13:58:02 UTC (rev 8369)
@@ -882,7 +882,7 @@
         else
         {
             // Insert only if the value was not found 
-            if ( iter==this->_oVector.end() || _tCompares( oValue, *iter) )
+            if ( iter==this->_oVector.end() || this->_tCompares( oValue, *iter) )
             {
                 this->_oVector.insert( iter, oValue );
             }
@@ -1017,7 +1017,7 @@
         // for this method.
         _tSTLConstIterator iter = std::lower_bound( this->_oVector.begin(), this->_oVector.end(), oValue, this->_tCompares );
 
-        if ( iter==this->_oVector.end() || _tCompares( oValue, *iter) )
+        if ( iter==this->_oVector.end() || this->_tCompares( oValue, *iter) )
         {
             // The value was not found
             return false;



More information about the mapguide-commits mailing list