Browse Source

Fix compile error under clang

master
Debao Zhang 12 years ago
parent
commit
c80fcf00c5
  1. 2
      src/xlsx/xlsxworksheet.cpp

2
src/xlsx/xlsxworksheet.cpp

@ -507,7 +507,7 @@ QVariant Worksheet::read(int row, int column) const
if (!cell)
return QVariant();
if (!cell->formula().isEmpty())
return QLatin1String("=")+cell->formula();
return QVariant(QLatin1String("=")+cell->formula());
return cell->value();
}

Loading…
Cancel
Save