From a5fd311b84821f8cfa9ce89725501385070e744d Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 8 Jun 2009 11:06:17 +0200 Subject: Add support for annotated tags --- src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 8308eb6..abe9c28 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -85,7 +85,11 @@ int main(int argc, char **argv) if (!svn.exportRevision(i)) break; - qDeleteAll(repositories); + foreach (Repository *repo, repositories) { + repo->finalizeTags(); + delete repo; + } + // success return 0; } -- cgit v1.2.1