mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
7106c4d5f0
In 1af00703b3
the constructor of
WSInfoModel was removed, not realizing that it contains a crucial
call to setHeaderDataStrings().
Fixes #4294
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
21 lines
446 B
C++
21 lines
446 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef WEIGHTSYSTEMINFOMODEL_H
|
|
#define WEIGHTSYSTEMINFOMODEL_H
|
|
|
|
#include "cleanertablemodel.h"
|
|
|
|
/* Encapsulate ws_info */
|
|
class WSInfoModel : public CleanerTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
enum Column {
|
|
DESCRIPTION,
|
|
GR
|
|
};
|
|
WSInfoModel(QObject *parent);
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
};
|
|
|
|
#endif
|