diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-17 22:43:52 +1300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-17 23:00:43 +1300 |
commit | 02d8dd5d13024830c99d92e8f981d6ee2051a7c9 (patch) | |
tree | 0da342f5a184cd01ac5b1cb8a6d4dea2b22fc7b1 /qt-ui/maintab.cpp | |
parent | e0280048bcd9e602fb5073bc5f5526a5dffd1886 (diff) | |
download | subsurface-02d8dd5d13024830c99d92e8f981d6ee2051a7c9.tar.gz |
Clean up the header files
Lots and lots and lots of header files were being included without being
needed. This attempts to clean some of that crud up.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 629b36ad7..3c00a1bed 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -6,28 +6,16 @@ */ #include "maintab.h" #include "mainwindow.h" -#include "../helpers.h" -#include "../statistics.h" -#include "divelistview.h" +#include "helpers.h" +#include "statistics.h" #include "modeldelegates.h" -#include "globe.h" -#include "diveplanner.h" -#include "divelist.h" -#include "qthelper.h" -#include "display.h" -#include "divepicturewidget.h" #if defined(FBSUPPORT) #include "socialnetworks.h" #endif -#include <QLabel> #include <QCompleter> -#include <QDebug> -#include <QSet> #include <QSettings> -#include <QTableView> -#include <QPalette> #include <QScrollBar> #include <QShortcut> #include <QMessageBox> |