forked from organicmaps/organicmaps
Fix Qt Application include path
This commit is contained in:
parent
b1a6f766f4
commit
917177cfe7
7 changed files with 12 additions and 12 deletions
|
@ -21,7 +21,7 @@
|
|||
#include "std/target_os.hpp"
|
||||
|
||||
#include <QtGui/QCloseEvent>
|
||||
#include <QFileDialog>
|
||||
#include <QtWidgets/QFileDialog>
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
|
||||
#include <QtGui/QAction>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "3party/pugixml/src/pugixml.hpp"
|
||||
|
||||
#include <QItemSelection>
|
||||
#include <QtCore/QItemSelection>
|
||||
|
||||
// DecodedSample -----------------------------------------------------------------------------------
|
||||
DecodedSample::DecodedSample(Index const & index, openlr::SamplePool const & sample)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <QAbstractTableModel>
|
||||
#include <QtCore/QAbstractTableModel>
|
||||
|
||||
class Index;
|
||||
class QItemSelection;
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#include "qt/traffic_panel.hpp"
|
||||
#include "qt/traffic_mode.hpp"
|
||||
|
||||
#include <QAbstractTableModel>
|
||||
#include <QBoxLayout>
|
||||
#include <QComboBox>
|
||||
#include <QHeaderView>
|
||||
#include <QStyledItemDelegate>
|
||||
#include <QTableView>
|
||||
#include <QtCore/QAbstractTableModel>
|
||||
#include <QtWidgets/QBoxLayout>
|
||||
#include <QtWidgets/QComboBox>
|
||||
#include <QtWidgets/QHeaderView>
|
||||
#include <QtWidgets/QStyledItemDelegate>
|
||||
#include <QtWidgets/QTableView>
|
||||
|
||||
// ComboBoxDelegate --------------------------------------------------------------------------------
|
||||
ComboBoxDelegate::ComboBoxDelegate(QObject * parent)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <QStyledItemDelegate>
|
||||
#include <QtWidgets/QStyledItemDelegate>
|
||||
|
||||
class QAbstractItemModel;
|
||||
class QComboBox;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "platform/settings.hpp"
|
||||
|
||||
#include <QFileDialog>
|
||||
#include <QtWidgets/QFileDialog>
|
||||
|
||||
namespace
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include <QDialog>
|
||||
#include <QtWidgets/QDialog>
|
||||
|
||||
class QLineEdit;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue