void LocationServiceSettingsObjectWrapper::setTimeThreshold(int value)
{
	QSettings s;
	s.setValue("time_threshold", value);
	prefs.time_threshold = value;
	emit timeThresholdChanged(	value);
}
示例#2
0
void QMLManager::setTimeThreshold(int time)
{
	m_timeThreshold = time;
	emit timeThresholdChanged();
}