Correct checks for containers' emptiness

This commit is contained in:
Gianluca Recchia
2018-11-02 03:38:55 +01:00
committed by Jonathan White
parent fc930bae69
commit e81841550b
6 changed files with 9 additions and 8 deletions

View File

@@ -403,10 +403,11 @@ QString CsvParser::getStatus() const
int CsvParser::getCsvCols() const
{
if ((m_table.size() > 0) && (m_table.at(0).size() > 0))
if (!m_table.isEmpty() && !m_table.at(0).isEmpty()) {
return m_table.at(0).size();
else
} else {
return 0;
}
}
int CsvParser::getCsvRows() const