aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago@kde.org>2009-06-08 11:06:17 +0200
committerThiago Macieira <thiago@kde.org>2009-06-08 11:06:17 +0200
commita5fd311b84821f8cfa9ce89725501385070e744d (patch)
tree60af0ca84e0375e8981456b896613f28560861ee /src/main.cpp
parent18dfc8c47b4fbd862cf1d2bbf245e2ff48eeb390 (diff)
downloadsvn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar.gz
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar.bz2
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar.xz
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.zip
Add support for annotated tags
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 5 insertions, 1 deletions
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;
}