mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
[apps] Operations in double when precision required
Change-Id: I7168a861a76178f0bf81841e9378f7399f67914a
This commit is contained in:
@@ -108,12 +108,12 @@ bool StoreController::cellAtLocationIsEditable(int columnIndex, int rowIndex) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool StoreController::setDataAtLocation(float floatBody, int columnIndex, int rowIndex) {
|
||||
bool StoreController::setDataAtLocation(double floatBody, int columnIndex, int rowIndex) {
|
||||
m_store->set(floatBody, columnIndex, rowIndex-1);
|
||||
return true;
|
||||
}
|
||||
|
||||
float StoreController::dataAtLocation(int columnIndex, int rowIndex) {
|
||||
double StoreController::dataAtLocation(int columnIndex, int rowIndex) {
|
||||
return m_store->get(columnIndex, rowIndex-1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user