diff DataController.hpp @ 9:b5943e4bf676

Fix up header includes. Introduce outer catch. Fix coding style. Remove spurious debug output.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Wed, 22 Aug 2012 18:48:07 +0200
parents 5e4985407feb
children fda70a362ed5
line wrap: on
line diff
--- a/DataController.hpp	Wed Aug 22 18:18:20 2012 +0200
+++ b/DataController.hpp	Wed Aug 22 18:48:07 2012 +0200
@@ -1,20 +1,19 @@
 #ifndef DATACONTROLLER_HPP
 #define DATACONTROLLER_HPP
 
-#include <QtCore/QObject>
-#include <QtCore/QDir>
-
 #include "FileDBLink.hpp"
 
+#include <QtCore/QDir>
+#include <QtCore/QObject>
+
+class QAction;
 class QMainWindow;
+class QMenu;
+class QPoint;
+class QSpinBox;
+class QTimer;
 class QTreeWidget;
 class QTreeWidgetItem;
-class QAction;
-class QSpinBox;
-class QTimer;
-class QPoint;
-class QTreeWidgetItem;
-class QMenu;
 
 class DataController : QObject {
 private:
@@ -35,7 +34,6 @@
   void buildDB(const QDir& dir);
 
 public slots:
-  //void cellClicked(int row, int column);
   void cellDoubleClicked(int row, int column);
   bool toggleShowFullPath();
   void setShowFullPath(bool);