2015-01-29 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'lib/rdidvalidator.cpp' that caused an empty
	string to be evaluated as invalid.
This commit is contained in:
Fred Gleason 2015-01-29 15:18:05 -05:00
parent 774e3c42e7
commit 6c0ef21ac9
2 changed files with 3 additions and 1 deletions

View File

@ -14733,3 +14733,6 @@
group.
* Added 'CONDUCTOR', 'SONG_ID' and 'SCHED_CODE' fields to the
'Cart Data Dump (CSV)' report in 'rdlibrary/list_reports.cpp'.
2015-01-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'lib/rdidvalidator.cpp' that caused an empty
string to be evaluated as invalid.

View File

@ -30,7 +30,6 @@ RDIdValidator::RDIdValidator(QObject *parent)
banned_chars.push_back('\\');
banned_chars.push_back('.');
banned_chars.push_back(96); // Apostrophe Quote
banned_chars.push_back(0); // NULL
}