Remove default NULL text for NULL value fields

See issue #163
This commit is contained in:
Chuong Vu
2014-12-06 22:20:06 -08:00
committed by Samir Aguiar
parent eda00dcd81
commit 74fd0793e3

View File

@@ -231,8 +231,6 @@ QVariant SqliteTableModel::data(const QModelIndex &index, int role) const
if(role == Qt::DisplayRole && isBinary(index))
return "BLOB";
else if(role == Qt::DisplayRole && m_data.at(index.row()).at(index.column()).isNull())
return "NULL";
else
return m_data.at(index.row()).at(index.column());
} else if(role == Qt::FontRole) {