aboutsummaryrefslogtreecommitdiffstats
path: root/src/repository.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@trolltech.com>2008-08-24 14:45:08 +0200
committerThiago Macieira <thiago.macieira@trolltech.com>2008-08-24 14:45:08 +0200
commite3f0499dfacda04c6c7de3cc103d9f1824f0d251 (patch)
tree2ed3e5e3c29ce009c9959b7be48f7425ff4b27a1 /src/repository.h
parent374d4cd6fe492af4bcb0adf46e380f55be737d01 (diff)
downloadsvn2git-e3f0499dfacda04c6c7de3cc103d9f1824f0d251.tar
svn2git-e3f0499dfacda04c6c7de3cc103d9f1824f0d251.tar.gz
svn2git-e3f0499dfacda04c6c7de3cc103d9f1824f0d251.tar.bz2
svn2git-e3f0499dfacda04c6c7de3cc103d9f1824f0d251.tar.xz
svn2git-e3f0499dfacda04c6c7de3cc103d9f1824f0d251.zip
Store the modified files in git-fast-import format already.
I don't know what went wrong, but importing KDE revision 296047 there was a mixup with the marks. So instead avoid the trouble and store the thing in in cooked format already
Diffstat (limited to 'src/repository.h')
-rw-r--r--src/repository.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/repository.h b/src/repository.h
index d837599..9a49040 100644
--- a/src/repository.h
+++ b/src/repository.h
@@ -30,10 +30,6 @@ public:
{
Q_DISABLE_COPY(Transaction)
friend class Repository;
- struct FileProperties {
- int mode;
- int mark;
- };
Repository *repository;
QByteArray branch;
@@ -45,7 +41,7 @@ public:
int lastmark;
QStringList deletedFiles;
- QHash<QString, FileProperties> modifiedFiles;
+ QByteArray modifiedFiles;
inline Transaction() {}
public: