xj qian
2024-08-21 9ac9cc9e9cd91b97d35a6e28400df71630765e40
jrj/xframe/xcontrol/xdwtable.hpp
@@ -453,24 +453,28 @@
   int GetItemInt(int row, int col)
   {
      xstring str = GetItemString(row, col);
      str = str.replace(L",", L"");
      return str.toInt();
   }
   double GetItemDouble(int row, int col)
   {
      xstring str = GetItemString(row, col);
      str = str.replace(L",", L"");
      return str.toDouble();
   }
   int GetItemInt(int row, string col)
   {
      xstring str = GetItemString(row, col);
      str = str.replace(L",", L"");
      return str.toInt();
   }
   double GetItemDouble(int row, string col)
   {
      xstring str = GetItemString(row, col);
      str = str.replace(L",", L"");
      return str.toDouble();
   }