diff options
author | Thiago Macieira <thiago@cassini.local.lan> | 2007-12-25 20:28:32 -0200 |
---|---|---|
committer | Thiago Macieira <thiago@cassini.local.lan> | 2007-12-25 20:28:32 -0200 |
commit | e087596c78237db34511211719218fe0fb2e8e51 (patch) | |
tree | 35c2332f0ead9cf11f1e19d140c9ccddef24ce58 /src/repository.h | |
parent | 1602441997715867882c9ff2102cb13bcfd241ee (diff) | |
download | svn2git-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.h | 2 |
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; |