Fix build
authorunc0rr
Fri, 29 Aug 2008 20:36:10 +0000
changeset 1237 7f3105a15d5d
parent 1236 f9110fd03754
child 1238 914bd2a9a249
Fix build
QTfrontend/hats.cpp
--- a/QTfrontend/hats.cpp	Fri Aug 29 20:30:17 2008 +0000
+++ b/QTfrontend/hats.cpp	Fri Aug 29 20:36:10 2008 +0000
@@ -16,8 +16,32 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#include "hats.h"
+
 HatsModel::HatsModel(QObject* parent) :
   QAbstractTableModel(parent)
 {
 
 }
+
+QVariant HatsModel::headerData(int section,
+            Qt::Orientation orientation, int role) const
+{
+	return QVariant();
+}
+
+int HatsModel::rowCount(const QModelIndex &parent) const
+{
+	if (parent.isValid())
+		return 0;
+	else
+		return 60;
+}
+
+int HatsModel::columnCount(const QModelIndex & parent) const
+{
+	if (parent.isValid())
+		return 0;
+	else
+		return 2;
+}