1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-10-07 01:37:08 +02:00

Cleanup spaces and pragma once

This commit is contained in:
kelteseth 2018-02-27 14:07:50 +01:00
parent 682b222669
commit 0d1141d3f1
3 changed files with 10 additions and 16 deletions

View File

@ -1,5 +1,4 @@
#ifndef INSTALLEDLISTMODEL_H
#define INSTALLEDLISTMODEL_H
#pragma once
#include "profilelistmodel.h"
#include "projectfile.h"
@ -76,4 +75,4 @@ private:
QUrl m_absoluteStoragePath;
};
#endif // INSTALLEDLISTMODEL_H

View File

@ -3,7 +3,6 @@
ProjectFile::ProjectFile(QJsonObject obj, QString folderName, QUrl absolutePath)
{
if (obj.contains("description"))
m_description = obj.value("description");
@ -35,15 +34,12 @@ ProjectFile::ProjectFile(QJsonObject obj, QString folderName, QUrl absolutePath)
ProjectFile::ProjectFile()
{
}
ProjectFile::~ProjectFile()
{
}
QUrl ProjectFile::absoluteStoragePath() const
{
return m_absoluteStoragePath;

View File

@ -1,5 +1,4 @@
#pragma once
#include <QObject>
#include <QLocalSocket>