comparison data/model/AggregateWaveModel.h @ 1770:dffc70996f54

Correct some erroneous signal signatures
author Chris Cannam
date Fri, 19 Jul 2019 16:10:00 +0100
parents 2e2497cba59e
children
comparison
equal deleted inserted replaced
1769:9a8327e7b2dc 1770:dffc70996f54
77 77
78 void toXml(QTextStream &out, 78 void toXml(QTextStream &out,
79 QString indent = "", 79 QString indent = "",
80 QString extraAttributes = "") const override; 80 QString extraAttributes = "") const override;
81 81
82 signals:
83 void modelChanged();
84 void modelChangedWithin(sv_frame_t, sv_frame_t);
85 void completionChanged();
86
87 protected slots: 82 protected slots:
88 void componentModelChanged(); 83 void componentModelChanged(ModelId);
89 void componentModelChangedWithin(sv_frame_t, sv_frame_t); 84 void componentModelChangedWithin(ModelId, sv_frame_t, sv_frame_t);
90 void componentModelCompletionChanged(); 85 void componentModelCompletionChanged(ModelId);
91 86
92 protected: 87 protected:
93 ChannelSpecList m_components; 88 ChannelSpecList m_components;
94 static PowerOfSqrtTwoZoomConstraint m_zoomConstraint; 89 static PowerOfSqrtTwoZoomConstraint m_zoomConstraint;
95 }; 90 };