2018-08-02 Fred Gleason <fredg@paravelsystems.com>

* Modified reports in rdcatch(1) to display UTF-8 strings
	correctly.
This commit is contained in:
Fred Gleason
2018-08-02 18:37:45 -04:00
parent ec6207c7d6
commit ad767309c7
4 changed files with 177 additions and 155 deletions

View File

@@ -383,7 +383,10 @@ void EditPlayout::PopulateDecks(QComboBox *box)
int count=0;
box->clear();
QString sql=QString("select STATION_NAME,CHANNEL from DECKS where ")+
QString sql=QString("select ")+
"STATION_NAME,"+ // 00
"CHANNEL "+ // 01
"from DECKS where "+
"(CARD_NUMBER!=-1)&&"+
"(PORT_NUMBER!=-1)&&"+
"(CHANNEL>128) order by STATION_NAME,CHANNEL";