gui minor fix

This commit is contained in:
maliakal_d 2020-05-20 17:26:57 +02:00
parent 07d90d127f
commit 174bb32744

View File

@ -451,7 +451,7 @@ void qTabMeasurement::GetNumSamples() {
}
void qTabMeasurement::SetNumSamples(int val) {
LOG(logINFO) << "Getting number of external gates to " << val;
LOG(logINFO) << "Getting number of samples to " << val;
try {
det->setNumberOfAnalogSamples(val);
}
@ -476,7 +476,7 @@ void qTabMeasurement::GetNumGates() {
}
void qTabMeasurement::SetNumGates(int val) {
LOG(logINFO) << "Setting number of gates to " << val;
LOG(logINFO) << "Setting number of external gates to " << val;
try {
det->setNumberOfGates(val);
}