Fix include paths

As expected, commit 7be962bfc2 ("Move subsurface-core to core and qt-mobile
to mobile-widgets") caused some breakage.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Linus Torvalds 2016-04-05 09:40:03 -07:00 committed by Dirk Hohndel
parent 0a4b246421
commit ad2ac58ea2
5 changed files with 9 additions and 9 deletions

View file

@ -1223,7 +1223,7 @@
<customwidget> <customwidget>
<class>TableView</class> <class>TableView</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header>desktop-widgets/desktop-widget/tableview.h</header> <header>desktop-widgets/tableview.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
<customwidget> <customwidget>

View file

@ -1,7 +1,7 @@
#include "printer.h" #include "printer.h"
#include "templatelayout.h" #include "templatelayout.h"
#include "statistics.h" #include "core/statistics.h"
#include "helpers.h" #include "core/helpers.h"
#include <algorithm> #include <algorithm>
#include <QtWebKitWidgets> #include <QtWebKitWidgets>

View file

@ -1,6 +1,6 @@
#include "printoptions.h" #include "printoptions.h"
#include "templateedit.h" #include "templateedit.h"
#include "helpers.h" #include "core/helpers.h"
#include <QDebug> #include <QDebug>
#include <QFileDialog> #include <QFileDialog>

View file

@ -1,8 +1,8 @@
#include <string> #include <string>
#include "templatelayout.h" #include "templatelayout.h"
#include "helpers.h" #include "core/helpers.h"
#include "display.h" #include "core/display.h"
QList<QString> grantlee_templates, grantlee_statistics_templates; QList<QString> grantlee_templates, grantlee_statistics_templates;

View file

@ -4,9 +4,9 @@
#include <grantlee_templates.h> #include <grantlee_templates.h>
#include "mainwindow.h" #include "mainwindow.h"
#include "printoptions.h" #include "printoptions.h"
#include "statistics.h" #include "core/statistics.h"
#include "qthelper.h" #include "core/qthelper.h"
#include "helpers.h" #include "core/helpers.h"
#include "core/subsurface-qt/DiveObjectHelper.h" #include "core/subsurface-qt/DiveObjectHelper.h"
int getTotalWork(print_options *printOptions); int getTotalWork(print_options *printOptions);