mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
shared_ptr fixes
git-svn-id: svn://localhost/ardour2/trunk@709 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
caf0739b59
commit
2d5b1ab4aa
2 changed files with 3 additions and 3 deletions
|
|
@ -236,7 +236,7 @@ AnalysisWindow::analyze_data (Gtk::Button *button)
|
|||
if (!pl || !rui)
|
||||
continue;
|
||||
|
||||
FFTResult *res = fft_graph.prepareResult(rui->color(), rui->route().name());
|
||||
FFTResult *res = fft_graph.prepareResult(rui->color(), rui->route()->name());
|
||||
|
||||
// if timeSelection
|
||||
if (source_selection_ranges_rb.get_active()) {
|
||||
|
|
@ -312,7 +312,7 @@ AnalysisWindow::analyze_data (Gtk::Button *button)
|
|||
|
||||
|
||||
Gtk::TreeModel::Row newrow = *(tlmodel)->append();
|
||||
newrow[tlcols.trackname] = rui->route().name();
|
||||
newrow[tlcols.trackname] = rui->route()->name();
|
||||
newrow[tlcols.visible] = true;
|
||||
newrow[tlcols.color] = rui->color();
|
||||
newrow[tlcols.graph] = res;
|
||||
|
|
|
|||
|
|
@ -693,7 +693,7 @@ TranzportControlProtocol::update_state ()
|
|||
/* per track */
|
||||
|
||||
if (route_table[0]) {
|
||||
AudioTrack* at = dynamic_cast<AudioTrack*> (route_table[0]);
|
||||
boost::shared_ptr<AudioTrack> at = boost::dynamic_pointer_cast<AudioTrack> (route_table[0]);
|
||||
if (at && at->record_enabled()) {
|
||||
pending_lights[LightTrackrec] = true;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue