For string type cell, Cell::value() return the string instead of the index

This commit is contained in:
Debao Zhang
2013-10-24 13:14:13 +08:00
parent 7805e37322
commit 97f1fa6835
5 changed files with 35 additions and 18 deletions
+2 -2
View File
@@ -191,9 +191,9 @@ QList<QSharedPointer<Worksheet> > Workbook::worksheets() const
return d->worksheets;
}
SharedStrings *Workbook::sharedStrings()
SharedStrings *Workbook::sharedStrings() const
{
Q_D(Workbook);
Q_D(const Workbook);
return d->sharedStrings.data();
}