2018-07-16 Fred Gleason <fredg@paravelsystems.com>

* Cleaned up SQL quieries in 'rdairplay/' ensure UTF-8 compatibility.
This commit is contained in:
Fred Gleason
2018-07-16 18:03:45 -04:00
parent 36269f7725
commit 71ed4888a5
14 changed files with 84 additions and 137 deletions

View File

@@ -143,15 +143,13 @@ void PostCounter::UpdateDisplay()
if(post_offset_valid) {
if(offset<-POST_COUNTER_MARGIN) {
state=QString().sprintf("-%s",(const char *)
QTime().addMSecs(-offset).toString());
state="-"+QTime().addMSecs(-offset).toString();
setPalette(post_early_palette);
color=POSTPOINT_EARLY_COLOR;
}
else {
if(offset>POST_COUNTER_MARGIN) {
state=QString().sprintf("+%s",(const char *)
QTime().addMSecs(offset).toString());
state="+"+QTime().addMSecs(offset).toString();
setPalette(post_late_palette);
color=POSTPOINT_LATE_COLOR;
}