[mapguide-commits] r4332 - trunk/MgDev/Common/MapGuideCommon/Services

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Thu Nov 5 23:28:06 EST 2009


Author: leaf
Date: 2009-11-05 23:28:05 -0500 (Thu, 05 Nov 2009)
New Revision: 4332

Modified:
   trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.cpp
   trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.h
Log:
submit on behalf of Aleck Sun
Fix Linux Build

Modified: trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.cpp
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.cpp	2009-11-06 03:06:50 UTC (rev 4331)
+++ trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.cpp	2009-11-06 04:28:05 UTC (rev 4332)
@@ -37,7 +37,7 @@
 {
 }
 
-int MgSqlResult::GetRowAffected()
+INT32 MgSqlResult::GetRowAffected()
 {
     return m_rowAffected;
 }
@@ -69,4 +69,5 @@
 INT32 MgSqlResult::GetClassId()
 {
     return m_cls_id;
-}
\ No newline at end of file
+}
+

Modified: trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.h	2009-11-06 03:06:50 UTC (rev 4331)
+++ trunk/MgDev/Common/MapGuideCommon/Services/SqlResult.h	2009-11-06 04:28:05 UTC (rev 4332)
@@ -39,7 +39,7 @@
     MgSqlResult(int rowAffected, MgParameterCollection * parameters, MgSqlDataReader * reader);
     ~MgSqlResult();
 
-    virtual int GetRowAffected();
+    virtual INT32 GetRowAffected();
 
     virtual MgParameterCollection * GetParameters();
 
@@ -68,7 +68,7 @@
 
 private:
 
-    int                         m_rowAffected;
+    INT32                       m_rowAffected;
     Ptr<MgParameterCollection>  m_parameters;
     Ptr<MgSqlDataReader>        m_reader;
 
@@ -78,3 +78,4 @@
 };
 
 #endif
+



More information about the mapguide-commits mailing list