comparison layer/Layer.cpp @ 908:4a578a360011 cxx11

More type fixes
author Chris Cannam
date Tue, 10 Mar 2015 13:22:10 +0000
parents b66fb15de477
children 4fe7a09be0fe
comparison
equal deleted inserted replaced
907:28d05ae8741c 908:4a578a360011
49 Layer::connectSignals(const Model *model) 49 Layer::connectSignals(const Model *model)
50 { 50 {
51 connect(model, SIGNAL(modelChanged()), 51 connect(model, SIGNAL(modelChanged()),
52 this, SIGNAL(modelChanged())); 52 this, SIGNAL(modelChanged()));
53 53
54 connect(model, SIGNAL(modelChangedWithin(int, int)), 54 connect(model, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)),
55 this, SIGNAL(modelChangedWithin(int, int))); 55 this, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)));
56 56
57 connect(model, SIGNAL(completionChanged()), 57 connect(model, SIGNAL(completionChanged()),
58 this, SIGNAL(modelCompletionChanged())); 58 this, SIGNAL(modelCompletionChanged()));
59 59
60 connect(model, SIGNAL(alignmentCompletionChanged()), 60 connect(model, SIGNAL(alignmentCompletionChanged()),