Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Fix another = -> - typo in the meta file parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Moore committed Nov 14, 2013
1 parent 4beaa6b commit ef47c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt4/pc-softwaremanager/pbiDBAccess.cpp
Expand Up @@ -227,7 +227,7 @@ QStringList PBIDBAccess::parseAppMetaLine(QString line){
for(int i=1; i<tmp.length(); i++){
qDebug() << "Check description line:" << tmp[i-1] << QString::number(i);
tmp[i-1] = tmp[i-1].simplified();
if(tmp[i=1].isEmpty() || tmp[i].isEmpty() ){}
if(tmp[i-1].isEmpty() || tmp[i].isEmpty() ){}
else if(tmp[i-1].endsWith(".") || tmp[i-1].endsWith(":") || tmp[i-1].endsWith(";") || tmp[i-1].endsWith("?") || tmp[i-1].endsWith("!") ){}
else if( tmp[i].startsWith("*") || tmp[i].startsWith("0") || tmp[i].startsWith("-") || tmp[i].startsWith("o ") ){}
else{
Expand Down

0 comments on commit ef47c85

Please sign in to comment.