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

* Removed the 'pam_rd' plug-in.
	* Removed rdchunk(1).
	* Upgraded Qt3 to Qt4.
This commit is contained in:
Fred Gleason
2018-08-07 10:09:49 -04:00
parent 6b1a06a910
commit 796e1bebc3
774 changed files with 10347 additions and 10823 deletions

View File

@@ -38,7 +38,7 @@ RDStringList::RDStringList(const QStringList &lhs)
}
RDStringList RDStringList::split(const QString &sep,const QString &str,
RDStringList RDStringList::split(const QChar &sep,const QString &str,
const QString &esc)
{
if(esc.isEmpty()) {
@@ -48,7 +48,7 @@ RDStringList RDStringList::split(const QString &sep,const QString &str,
bool escape=false;
QChar e=esc.at(0);
list.push_back(QString());
for(unsigned i=0;i<str.length();i++) {
for(int i=0;i<str.length();i++) {
if(str.at(i)==e) {
escape=!escape;
}