forked from qt-creator/qt-creator
Canonicalize some includes
Our canonical style is
#include <utils/fileutils.h>
rather than
#include "utils/fileutils.h"
Which makes sense, as such headers will never be found in the local
directory.
Change-Id: I4ca46e90d6c4d19d4b1f235f4c79caad864ef222
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
4c19157204
commit
c6a6c12f05
@@ -36,7 +36,7 @@
|
||||
#include "qmakeprojectmanager/qmakebuildinfo.h"
|
||||
#include "qmakeprojectmanager/qmakeprojectmanagerconstants.h"
|
||||
|
||||
#include "utils/algorithm.h"
|
||||
#include <utils/algorithm.h>
|
||||
|
||||
using namespace QmakeProjectManager;
|
||||
using namespace ProjectExplorer;
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
****************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include "coreplugin/id.h"
|
||||
#include <coreplugin/id.h>
|
||||
#include "projectexplorer/namedwidget.h"
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
#include "iosconstants.h"
|
||||
#include "iossimulator.h"
|
||||
|
||||
#include "utils/qtcassert.h"
|
||||
#include <utils/qtcassert.h>
|
||||
|
||||
namespace Ios {
|
||||
namespace Internal {
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
#include <coreplugin/icore.h>
|
||||
#include <utils/qtcassert.h>
|
||||
#include <utils/fileutils.h>
|
||||
#include "utils/runextensions.h"
|
||||
#include "utils/synchronousprocess.h"
|
||||
#include <utils/runextensions.h>
|
||||
#include <utils/synchronousprocess.h>
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QDir>
|
||||
|
||||
@@ -26,10 +26,10 @@
|
||||
#include "simulatorcontrol.h"
|
||||
#include "iosconfigurations.h"
|
||||
|
||||
#include "utils/algorithm.h"
|
||||
#include "utils/runextensions.h"
|
||||
#include "utils/qtcassert.h"
|
||||
#include "utils/synchronousprocess.h"
|
||||
#include <utils/algorithm.h>
|
||||
#include <utils/runextensions.h>
|
||||
#include <utils/qtcassert.h>
|
||||
#include <utils/synchronousprocess.h>
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
#include <CoreFoundation/CoreFoundation.h>
|
||||
|
||||
@@ -24,9 +24,10 @@
|
||||
****************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <utils/fileutils.h>
|
||||
|
||||
#include <QObject>
|
||||
#include <QFuture>
|
||||
#include "utils/fileutils.h"
|
||||
#include <QDebug>
|
||||
#include <memory>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user