# HG changeset patch
# User unc0rr
# Date 1358061290 -14400
# Node ID af2d2f56bc45d84a71cdf318824095702fac4575
# Parent  3a1708759c4f53b5b768f713ef6a8174af6b979f
Fix build

diff -r 3a1708759c4f -r af2d2f56bc45 QTfrontend/ui/widget/hatbutton.cpp
--- a/QTfrontend/ui/widget/hatbutton.cpp	Sun Jan 13 10:46:01 2013 +0400
+++ b/QTfrontend/ui/widget/hatbutton.cpp	Sun Jan 13 11:14:50 2013 +0400
@@ -20,7 +20,7 @@
 
 #include "hatprompt.h"
 #include "DataManager.h"
-#include "hatmodel.h"
+#include "HatModel.h"
 #include "hatbutton.h"
 
 HatButton::HatButton(QWidget* parent) : QPushButton(parent)
@@ -69,4 +69,4 @@
 	setCurrentIndex(hatID);
 	emit currentIndexChanged(hatID);
 	emit currentHatChanged(currentHat());
-}
\ No newline at end of file
+}
diff -r 3a1708759c4f -r af2d2f56bc45 QTfrontend/ui/widget/hatprompt.cpp
--- a/QTfrontend/ui/widget/hatprompt.cpp	Sun Jan 13 10:46:01 2013 +0400
+++ b/QTfrontend/ui/widget/hatprompt.cpp	Sun Jan 13 11:14:50 2013 +0400
@@ -30,9 +30,9 @@
 #include <QSortFilterProxyModel>
 #include <QDebug>
 
-#include "datamanager.h"
+#include "DataManager.h"
 #include "lineeditcursor.h"
-#include "hatmodel.h"
+#include "HatModel.h"
 #include "hatprompt.h"
 
 HatPrompt::HatPrompt(int currentIndex, QWidget* parent) : QDialog(parent)
@@ -166,4 +166,4 @@
 {
 	filterModel->setFilterFixedString(text);
 	list->setCurrentIndex(filterModel->index(0, 0));
-}
\ No newline at end of file
+}