From 5ee9ab19958fae1a0fc109e6204def0737db104d Mon Sep 17 00:00:00 2001 From: Debao Zhang Date: Mon, 6 Jan 2014 16:42:45 +0800 Subject: [PATCH] Fix a silly bug --- src/xlsx/xlsxutility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xlsx/xlsxutility.cpp b/src/xlsx/xlsxutility.cpp index 30b783f..a0eba33 100755 --- a/src/xlsx/xlsxutility.cpp +++ b/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)