13
0

Fixed compile warnings.

git-svn-id: svn://localhost/ardour2/trunk@668 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sampo Savolainen 2006-07-06 21:25:45 +00:00
parent ee58e757e9
commit 6f2e8de6a0

View File

@ -45,16 +45,15 @@ using namespace PBD;
AnalysisWindow::AnalysisWindow() AnalysisWindow::AnalysisWindow()
: ArdourDialog(_("analysis window")), : ArdourDialog(_("analysis window")),
fft_graph (2048),
source_selection_label (_("Signal source")), source_selection_label (_("Signal source")),
source_selection_ranges_rb (_("Selected ranges")), source_selection_ranges_rb (_("Selected ranges")),
source_selection_regions_rb (_("Selected regions")), source_selection_regions_rb (_("Selected regions")),
display_model_label (_("Display model")), display_model_label (_("Display model")),
display_model_composite_separate_rb (_("Composite graphs for each track")), display_model_composite_separate_rb (_("Composite graphs for each track")),
display_model_composite_all_tracks_rb (_("Composite graph of all tracks")) display_model_composite_all_tracks_rb (_("Composite graph of all tracks")),
fft_graph (2048)
{ {
track_list_ready = false; track_list_ready = false;
@ -237,7 +236,7 @@ AnalysisWindow::analyze_data (Gtk::Button *button)
if (!pl || !rui) if (!pl || !rui)
continue; continue;
FFTResult *res = fft_graph.prepareResult(*&rui->color(), *&rui->route().name()); FFTResult *res = fft_graph.prepareResult(rui->color(), rui->route().name());
// if timeSelection // if timeSelection
if (source_selection_ranges_rb.get_active()) { if (source_selection_ranges_rb.get_active()) {
@ -315,7 +314,7 @@ AnalysisWindow::analyze_data (Gtk::Button *button)
Gtk::TreeModel::Row newrow = *(tlmodel)->append(); Gtk::TreeModel::Row newrow = *(tlmodel)->append();
newrow[tlcols.trackname] = rui->route().name(); newrow[tlcols.trackname] = rui->route().name();
newrow[tlcols.visible] = true; newrow[tlcols.visible] = true;
newrow[tlcols.color] = *&rui->color(); newrow[tlcols.color] = rui->color();
newrow[tlcols.graph] = res; newrow[tlcols.graph] = res;
} }