- added settingsdialog
[buliscores] / src / matchdaymodel.h
index 8005e57..b99ef48 100644 (file)
@@ -17,11 +17,14 @@ class MatchDayModel : public QAbstractTableModel
         Seperator = 3,
         AwayScore = 4,
         AwayTeam  = 5,
-        AwayIcon  = 6
+        AwayIcon  = 6,
+        Date      = 7
     };
 
 private:
-    BackendKicker*  backendkicker;
+    QString         m_url;
+    BackendKicker*  m_backend;
+
 
 public:
     explicit MatchDayModel(QObject *parent = 0);
@@ -30,6 +33,8 @@ public:
     int columnCount(const QModelIndex& index) const;
     QVariant data(const QModelIndex& index, int role) const;
 
+    void update(void);
+
 signals: