- better size calculation
[buliscores] / src / matchdaymodel.h
index b99ef48..21fc9fc 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <QAbstractTableModel>
 #include <QFontMetrics>
+#include <QSettings>
 
 #include "backendkicker.h"
 
@@ -24,6 +25,8 @@ class MatchDayModel : public QAbstractTableModel
 private:
     QString         m_url;
     BackendKicker*  m_backend;
+    int             m_lastRowCount;
+    QSettings       m_settings;
 
 
 public:
@@ -33,15 +36,11 @@ public:
     int columnCount(const QModelIndex& index) const;
     QVariant data(const QModelIndex& index, int role) const;
 
-    void update(void);
-
-signals:
-
-
 protected slots:
     void onMatchListChanged(void);
 
 public slots:
+    void update(void);
 
 };