aboutsummaryrefslogtreecommitdiffstats
path: root/src/repository.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/repository.cpp')
-rw-r--r--src/repository.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/repository.cpp b/src/repository.cpp
index ac0a34b..a35980f 100644
--- a/src/repository.cpp
+++ b/src/repository.cpp
@@ -459,12 +459,12 @@ void Repository::finalizeTags()
if (!branchRef.startsWith("refs/"))
branchRef.prepend("refs/heads/");
- QTextStream s(&fastImport);
- s << "progress Creating annotated tag " << tagName << " from ref " << branchRef << endl
- << "tag " << tagName << endl
- << "from " << branchRef << endl
- << "tagger " << QString::fromUtf8(tag.author) << ' ' << tag.dt << " -0000" << endl
- << "data " << message.length() << endl;
+ QByteArray s = "progress Creating annotated tag " + tagName.toUtf8() + " from ref " + branchRef + "\n"
+ + "tag " + tagName.toUtf8() + "\n"
+ + "from " + branchRef + "\n"
+ + "tagger " + tag.author + ' ' + QByteArray::number(tag.dt) + " -0000" + "\n"
+ + "data " + QByteArray::number( message.length() ) + "\n";
+ fastImport.write(s);
}
fastImport.write(message);