aboutsummaryrefslogtreecommitdiffstats
path: root/src/repository.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago@cassini.local.lan>2007-12-25 20:28:32 -0200
committerThiago Macieira <thiago@cassini.local.lan>2007-12-25 20:28:32 -0200
commite087596c78237db34511211719218fe0fb2e8e51 (patch)
tree35c2332f0ead9cf11f1e19d140c9ccddef24ce58 /src/repository.h
parent1602441997715867882c9ff2102cb13bcfd241ee (diff)
downloadsvn2git-e087596c78237db34511211719218fe0fb2e8e51.tar
svn2git-e087596c78237db34511211719218fe0fb2e8e51.tar.gz
svn2git-e087596c78237db34511211719218fe0fb2e8e51.tar.bz2
svn2git-e087596c78237db34511211719218fe0fb2e8e51.tar.xz
svn2git-e087596c78237db34511211719218fe0fb2e8e51.zip
Keep track of when a given branch was created instead
Diffstat (limited to 'src/repository.h')
-rw-r--r--src/repository.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.h b/src/repository.h
index 2cee3f2..edd04b7 100644
--- a/src/repository.h
+++ b/src/repository.h
@@ -70,7 +70,7 @@ public:
private:
struct Branch
{
- bool isCreated;
+ uint created;
};
QHash<QString, Branch> branches;