Browse Source

Fix a silly bug

master
Debao Zhang 11 years ago
parent
commit
5ee9ab1995
  1. 4
      src/xlsx/xlsxutility.cpp

4
src/xlsx/xlsxutility.cpp

@ -63,8 +63,8 @@ QString getRelFilePath(const QString &filePath)
if (idx == -1)
return QString();
return QString(filePath.left(idx) + QLatin1String("/_rel/")
+ filePath.mid(idx+1) + QLatin1String(".rel"));
return QString(filePath.left(idx) + QLatin1String("/_rels/")
+ filePath.mid(idx+1) + QLatin1String(".rels"));
}
double datetimeToNumber(const QDateTime &dt, bool is1904)

Loading…
Cancel
Save