comparison changesetscene.cpp @ 312:f98c8ece3035

Merge from branch "new-branches-with-status-outside-tabs"
author Chris Cannam
date Tue, 01 Mar 2011 14:22:53 +0000
parents 4811eb34e819
children
comparison
equal deleted inserted replaced
310:b8ed12c2035f 312:f98c8ece3035
49 this, SIGNAL(showSummary(Changeset *))); 49 this, SIGNAL(showSummary(Changeset *)));
50 50
51 connect(item, SIGNAL(mergeFrom(QString)), 51 connect(item, SIGNAL(mergeFrom(QString)),
52 this, SIGNAL(mergeFrom(QString))); 52 this, SIGNAL(mergeFrom(QString)));
53 53
54 connect(item, SIGNAL(newBranch(QString)),
55 this, SIGNAL(newBranch(QString)));
56
54 connect(item, SIGNAL(tag(QString)), 57 connect(item, SIGNAL(tag(QString)),
55 this, SIGNAL(tag(QString))); 58 this, SIGNAL(tag(QString)));
56 } 59 }
57 60
58 void 61 void
72 connect(item, SIGNAL(showSummary()), 75 connect(item, SIGNAL(showSummary()),
73 this, SIGNAL(showSummary())); 76 this, SIGNAL(showSummary()));
74 77
75 connect(item, SIGNAL(showWork()), 78 connect(item, SIGNAL(showWork()),
76 this, SIGNAL(showWork())); 79 this, SIGNAL(showWork()));
80
81 connect(item, SIGNAL(newBranch()),
82 this, SIGNAL(newBranch()));
83
84 connect(item, SIGNAL(noBranch()),
85 this, SIGNAL(noBranch()));
86
77 } 87 }
78 88
79 void 89 void
80 ChangesetScene::addDateItem(DateItem *item) 90 ChangesetScene::addDateItem(DateItem *item)
81 { 91 {