xj qian
2024-08-21 e3488c13f1bcbcd39f8b9b267a3897fcc0d838aa
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();
   }