Skip to content

Commit

Permalink
Compilation correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
aroquemaurel committed Nov 1, 2017
1 parent 64544f6 commit f84b5a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: UTF8 -*-

#### CONFIGURATION ####
qt_path="/opt/Qt/5.8/gcc_64"
qt_path="/opt/Qt/5.9.1/gcc_64"
make_path="make"
build_path="/home/aroquemaurel/projets/qt/Fact/build-factdev-release"
repo_path="/home/aroquemaurel/projets/qt/Fact/FactDev"
Expand Down
4 changes: 2 additions & 2 deletions src/gui/widgets/ratewidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void RateWidget::setWidgetDailyRateValue(double value)

double RateWidget::getDailyRate() {
// return ui->sbDailyRate->value();
return 0d;
return 0;
}

void RateWidget::setDailyRate() {
Expand All @@ -48,7 +48,7 @@ void RateWidget::setDailyRate() {

double RateWidget::getHourlyRate() {
// return ui->sbHourlyRate->value();
return 0d;
return 0;
}

void RateWidget::setHourlyRate() {
Expand Down

0 comments on commit f84b5a9

Please sign in to comment.