xj qian
2024-08-05 19df926ceac02075e1c92b2e961a49e0385051cb
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();
   }