2019-04-29 Fred Gleason <fredg@paravelsystems.com>

* Added code to normalize the case of log names in
	'RDLog::RDLog()'.
This commit is contained in:
Fred Gleason
2019-04-29 16:29:50 -04:00
parent 44bca5bc35
commit c170dc3d0a
3 changed files with 17 additions and 1 deletions

View File

@@ -84,7 +84,9 @@ QString RDLogEvent::logName() const
void RDLogEvent::setLogName(QString logname)
{
log_name=logname;
RDLog *log=new RDLog(logname);
log_name=log->name(); // So we normalize the case
delete log;
}