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

* Cleaned up SQL quieries in 'lib/' ensure UTF-8 compatibility.
This commit is contained in:
Fred Gleason
2018-07-12 13:47:20 -04:00
parent bc2ada9b22
commit 363dbb7878
67 changed files with 1617 additions and 2040 deletions

View File

@@ -67,7 +67,7 @@ void RDHotKeyList::BuildKeyList( )
}
if (p != NULL) {
while ( ( fgets(line,256,hkeyfile) != NULL) && (!(strstr(line,"}")) ) ) {
QString buf = cleanStrings(QString().sprintf("%s",line));
QString buf = cleanStrings(line);
int acomment = buf.find("//");
int eqsign = buf.find("=");
if ((eqsign != -1) && (acomment != 0) ) {