sqlitetablemode: typedef the m_data type

This commit is contained in:
Peinthor Rene
2015-04-10 08:53:26 +02:00
parent 8bdb4fb94c
commit 1ca8ffb512

View File

@@ -56,7 +56,8 @@ private:
DBBrowserDB* m_db;
int m_rowCount;
QStringList m_headers;
QList<QByteArrayList> m_data;
typedef QList<QByteArrayList> DataType;
DataType m_data;
QString m_sQuery;
QString m_sTable;