formatting and include fix

pull/12/head
mandlm 2018-05-23 17:47:04 +02:00
parent 27ace83ddd
commit 060933f716
8 changed files with 85 additions and 83 deletions

View File

@ -3,7 +3,7 @@
#include "CheckableItem.h"
#include <QJsonObject>
#include <map>
#include <vector>
class CheckableItems : public std::vector<CheckableItem>
{

View File

@ -10,9 +10,11 @@ class GenusModel : public QAbstractTableModel
Q_OBJECT
private:
CheckableItems m_tiere = { "Tiger", "Bär", "Katze", "Pferd", "Gans", "Elefant", "Katze", "Hund" };
CheckableItems m_futter = { "Salat", "Fleisch", "Knocken", "Banane", "Apfel", "Möhre", "Honig", "Zucker" };
CheckableItems m_zirkus = { "Kiste", "Holz", "Vorhang", "Baum" };
CheckableItems m_tiere = {
"Tiger", "Bär", "Katze", "Pferd", "Gans", "Elefant", "Katze", "Hund"};
CheckableItems m_futter = {"Salat", "Fleisch", "Knocken", "Banane", "Apfel",
"Möhre", "Honig", "Zucker"};
CheckableItems m_zirkus = {"Kiste", "Holz", "Vorhang", "Baum"};
public:
GenusModel(QObject *parent);