Fix build after clang-format reorderd the #include's

Include the public class header in the private one.

NO_CHANGELOG
This commit is contained in:
Ahmad Samir 2021-03-06 00:32:33 +02:00
parent c0274df69a
commit e7e839e82b
3 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,6 @@
*/
#include "datacontainer_p.h" //krazy:exclude=includes
#include "datacontainer.h" //krazy:exclude=includes
namespace Plasma
{

View File

@ -7,6 +7,7 @@
#ifndef PLASMA_DATACONTAINER_P_H
#define PLASMA_DATACONTAINER_P_H
#include "datacontainer.h"
#include "servicejob.h"
#include "storage_p.h"

View File

@ -7,6 +7,8 @@
#ifndef PLASMA_SVG_P_H
#define PLASMA_SVG_P_H
#include "svg.h"
#include <QExplicitlySharedDataPointer>
#include <QHash>
#include <QObject>
@ -16,7 +18,6 @@
namespace Plasma
{
class Svg;
class SharedSvgRenderer : public QSvgRenderer, public QSharedData
{