Fix a silly bug

This commit is contained in:
Debao Zhang
2014-01-06 16:42:45 +08:00
parent d3cfd3a6c6
commit 5ee9ab1995
+2 -2
View File
@@ -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)