mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/statistics] Forbid negative sizes and round float sizes
Change-Id: I4db9777bea04f70b86da97f940ef5cbe669e41d9
This commit is contained in:
@@ -112,8 +112,9 @@ bool StoreController::cellAtLocationIsEditable(int columnIndex, int rowIndex) {
|
||||
return false;
|
||||
}
|
||||
|
||||
void StoreController::setDataAtLocation(float floatBody, int columnIndex, int rowIndex) {
|
||||
bool StoreController::setDataAtLocation(float floatBody, int columnIndex, int rowIndex) {
|
||||
m_store->set(floatBody, columnIndex, rowIndex-1);
|
||||
return true;
|
||||
}
|
||||
|
||||
float StoreController::dataAtLocation(int columnIndex, int rowIndex) {
|
||||
|
||||
Reference in New Issue
Block a user