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

Commit

Permalink
Add a bit more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Moore committed Nov 14, 2013
1 parent d78e9d1 commit 4beaa6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src-qt4/pc-softwaremanager/pbiDBAccess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,9 @@ QStringList PBIDBAccess::parseAppMetaLine(QString line){
else if( tmp[i].startsWith("*") || tmp[i].startsWith("0") || tmp[i].startsWith("-") || tmp[i].startsWith("o ") ){}
else{
//Bad line break, combine it with the previous line
qDebug() << "Bad line break:" << tmp[i-1] << "<br>" << tmp[i];
tmp[i-1].append(" "+tmp[i]);
tmp = tmp.removeAt(i);
tmp.removeAt(i);
i--;
}
}
Expand Down

0 comments on commit 4beaa6b

Please sign in to comment.