LiFan
2024-07-29 b8a8bd4567d4fd557e704b245b764dca3c5b1066
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();
   }