Some fleshing out of MergeView.

This commit is contained in:
Jim Evins
2016-05-10 23:59:57 -04:00
parent 37358aac43
commit 8b56520fed
13 changed files with 175 additions and 29 deletions
+3 -3
View File
@@ -45,7 +45,7 @@ protected:
// Implementation of virtual methods
/////////////////////////////////
public:
QList<QString> keyList() const;
QStringList keyList() const;
QString primaryKey() const;
protected:
void open();
@@ -57,7 +57,7 @@ protected:
// Private methods
/////////////////////////////////
QString keyFromIndex( int iField ) const;
QList<QString> parseLine();
QStringList parseLine();
/////////////////////////////////
@@ -68,7 +68,7 @@ private:
bool mLine1HasKeys;
QFile mFile;
QList<QString> mKeys;
QStringList mKeys;
int mNFieldsMax;
};