Skip to content

Commit

Permalink
Updated Code and formating changes for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Fran89 committed Aug 15, 2015
1 parent 7f62501 commit 9e4de23
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/plotselect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -486,19 +486,19 @@ void PlotSelect::on_Sbias_button_clicked() {
ui->textBrowser->append(" SG: "+start.toString("MMM/dd")+" - "+end.toString("MMM/dd")+
" "+QString::number(between)+" days");
ui->textBrowser->append(" __________________________________________________\n");
ui->textBrowser->append("Growth rate in m/yr for the Fast Growth\t= "+
ui->textBrowser->append(" Growth rate in m/yr for the Fast Growth\t= "+
QString::number(Favg,'f', 7));
ui->textBrowser->append("Growth in m over the Fast Growth Season\t= "+
ui->textBrowser->append(" Growth in m over the Fast Growth Season\t= "+
QString::number(fastgt,'f', 7));
ui->textBrowser->append("Growth rate in m/yr for the Slow Growth\t= "+
ui->textBrowser->append(" Growth rate in m/yr for the Slow Growth\t= "+
QString::number(Savg,'f', 7));
ui->textBrowser->append("Growth in m over the Slow Growth Season:\t= "+
ui->textBrowser->append(" Growth in m over the Slow Growth Season:\t= "+
QString::number(slowgt,'f', 7));
ui->textBrowser->append("Total growth over the year: \t\t= "+
ui->textBrowser->append(" Total growth over the year: \t\t= "+
QString::number(total,'f', 7));
ui->textBrowser->append("Percent Growth over Fast Growth Season\t= "+
ui->textBrowser->append(" Percent Growth over Fast Growth Season\t= "+
QString::number(percentF)+"%");
ui->textBrowser->append("Percent Growth over Slow Growth Season\t= "+
ui->textBrowser->append(" Percent Growth over Slow Growth Season\t= "+
QString::number(percentS)+"%");
} else {
ui->textBrowser->append(" __________________________________________________\n");
Expand All @@ -509,19 +509,19 @@ void PlotSelect::on_Sbias_button_clicked() {
ui->textBrowser->append(" SG: "+start.toString("MMM/dd")+" - "+end.toString("MMM/dd")+
" "+QString::number(between)+" days");
ui->textBrowser->append(" __________________________________________________\n");
ui->textBrowser->append("Growth rate in m/yr for the Fast Growth\t= "+
ui->textBrowser->append(" Growth rate in m/yr for the Fast Growth\t= "+
QString::number(Favg,'f', 7));
ui->textBrowser->append("Growth in m over the Fast Growth Season\t= "+
ui->textBrowser->append(" Growth in m over the Fast Growth Season\t= "+
QString::number(fastgt,'f', 7));
ui->textBrowser->append("Growth rate in m/yr for the Slow Growth\t= "+
ui->textBrowser->append(" Growth rate in m/yr for the Slow Growth\t= "+
QString::number(Savg,'f', 7));
ui->textBrowser->append("Dissolved in m over the Slow Growth Season:\t= "+
ui->textBrowser->append(" Dissolved in m over the Slow Growth Season:\t= "+
QString::number(slowgt,'f', 7));
ui->textBrowser->append("Total growth over the year: \t\t= "+
ui->textBrowser->append(" Total growth over the year: \t\t= "+
QString::number(total,'f', 7));
ui->textBrowser->append("Percent Growth over Fast Growth Season\t= "+
ui->textBrowser->append(" Percent Growth over Fast Growth Season\t= "+
QString::number(percentF+percentS)+"%");
ui->textBrowser->append("Percent Dissoved over Slow Growth Season\t= "+
ui->textBrowser->append(" Percent Dissoved over Slow Growth Season\t= "+
QString::number(-1*percentS)+"%");
}
#elif _WIN32
Expand Down

0 comments on commit 9e4de23

Please sign in to comment.