Mercurial > hg > easyhg
comparison src/changesetscene.cpp @ 514:306a62fe851e
Add "Close branch" menu option. Is currently available in some cases where it should not be, and using it exposes the fact that the chain of marked-closed changesets is not yet right in grapher.
author | Chris Cannam |
---|---|
date | Tue, 18 Oct 2011 16:50:05 +0100 |
parents | 75003687f364 |
children | 533519ebc0cb |
comparison
equal
deleted
inserted
replaced
513:ddc7238fc3b0 | 514:306a62fe851e |
---|---|
57 connect(item, SIGNAL(mergeFrom(QString)), | 57 connect(item, SIGNAL(mergeFrom(QString)), |
58 this, SIGNAL(mergeFrom(QString))); | 58 this, SIGNAL(mergeFrom(QString))); |
59 | 59 |
60 connect(item, SIGNAL(newBranch(QString)), | 60 connect(item, SIGNAL(newBranch(QString)), |
61 this, SIGNAL(newBranch(QString))); | 61 this, SIGNAL(newBranch(QString))); |
62 | |
63 connect(item, SIGNAL(closeBranch(QString)), | |
64 this, SIGNAL(closeBranch(QString))); | |
62 | 65 |
63 connect(item, SIGNAL(tag(QString)), | 66 connect(item, SIGNAL(tag(QString)), |
64 this, SIGNAL(tag(QString))); | 67 this, SIGNAL(tag(QString))); |
65 } | 68 } |
66 | 69 |