Double semicolon cleanup.

This commit is contained in:
21E14
2015-12-29 22:42:27 -05:00
committed by lateminer
parent b72d6e77e8
commit fcc23c5c63
6 changed files with 9 additions and 9 deletions

View File

@@ -108,7 +108,7 @@ int BanTableModel::rowCount(const QModelIndex &parent) const
int BanTableModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return columns.length();;
return columns.length();
}
QVariant BanTableModel::data(const QModelIndex &index, int role) const
@@ -183,4 +183,4 @@ bool BanTableModel::shouldShow()
if (priv->size() > 0)
return true;
return false;
}
}