summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-01-26 09:53:08 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-01-26 09:56:09 +0100
commitf432f7836a3ec2368260a51d352188e465d9c0cc (patch)
tree6e813389bb7192ebc44cbebbef595a3f8f0567da /tracker-pt
parentb7efdfe078804b9f0d67c509647b7a9f4dc6fa0a (diff)
CLion pedantry
Fix few of the inspection warnings from CLion that make any sense at all.
Diffstat (limited to 'tracker-pt')
-rw-r--r--tracker-pt/ftnoir_tracker_pt_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt_dialog.cpp b/tracker-pt/ftnoir_tracker_pt_dialog.cpp
index 54a4f69b..10a2c6cb 100644
--- a/tracker-pt/ftnoir_tracker_pt_dialog.cpp
+++ b/tracker-pt/ftnoir_tracker_pt_dialog.cpp
@@ -175,7 +175,7 @@ void TrackerDialog_PT::startstop_trans_calib(bool start)
return tr("%1 pitch samples. Pitch more to %2 samples for stable calibration.")
.arg(nsamples[1]).arg(min_pitch_samples);
- const unsigned nsamples_total = nsamples[0] + nsamples[1];
+ const int nsamples_total = nsamples[0] + nsamples[1];
return tr("%1 samples. Over %2, good!").arg(nsamples_total).arg(min_samples);
);