Skip to content
Snippets Groups Projects
Commit d7e14403 authored by Matthias Puchner's avatar Matthias Puchner
Browse files

numberOfThreads has to be unsigned

parent a3fa2318
No related branches found
No related tags found
1 merge request!481Refactor SimulationOptionsItem (no SessionItem, no SessionModel any more)
......@@ -74,12 +74,12 @@ SimulationOptionsItem::SimulationOptionsItem() : SessionItem(M_TYPE)
});
}
int SimulationOptionsItem::numberOfThreads() const
unsigned SimulationOptionsItem::numberOfThreads() const
{
return getItemValue(P_NTHREADS).toInt();
return getItemValue(P_NTHREADS).toUInt();
}
void SimulationOptionsItem::setNumberOfThreads(int number)
void SimulationOptionsItem::setNumberOfThreads(unsigned number)
{
setItemValue(P_NTHREADS, number);
}
......
......@@ -36,8 +36,8 @@ public:
explicit SimulationOptionsItem();
void setNumberOfThreads(int n);
int numberOfThreads() const;
void setNumberOfThreads(unsigned n);
unsigned numberOfThreads() const;
void setRunImmediately(bool runImmediately);
bool runImmediately() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment