mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Remove never used get/setter
This commit is contained in:
parent
64867f490f
commit
c7006f97b3
@ -40,62 +40,4 @@ ProjectFile::~ProjectFile()
|
||||
{
|
||||
}
|
||||
|
||||
QUrl ProjectFile::absoluteStoragePath() const
|
||||
{
|
||||
return m_absoluteStoragePath;
|
||||
}
|
||||
|
||||
void ProjectFile::setAbsoluteStoragePath(const QUrl& absoluteStoragePath)
|
||||
{
|
||||
m_absoluteStoragePath = absoluteStoragePath;
|
||||
}
|
||||
|
||||
QString ProjectFile::folderId() const
|
||||
{
|
||||
return m_folderId;
|
||||
}
|
||||
|
||||
void ProjectFile::setFolderId(const QString& folderId)
|
||||
{
|
||||
m_folderId = folderId;
|
||||
}
|
||||
|
||||
QVariant ProjectFile::title() const
|
||||
{
|
||||
return m_title;
|
||||
}
|
||||
|
||||
void ProjectFile::setTitle(const QVariant& title)
|
||||
{
|
||||
m_title = title;
|
||||
}
|
||||
|
||||
QVariant ProjectFile::preview() const
|
||||
{
|
||||
return m_preview;
|
||||
}
|
||||
|
||||
void ProjectFile::setPreview(const QVariant& preview)
|
||||
{
|
||||
m_preview = preview;
|
||||
}
|
||||
|
||||
QVariant ProjectFile::file() const
|
||||
{
|
||||
return m_file;
|
||||
}
|
||||
|
||||
void ProjectFile::setFile(const QVariant& file)
|
||||
{
|
||||
m_file = file;
|
||||
}
|
||||
|
||||
QVariant ProjectFile::description() const
|
||||
{
|
||||
return m_description;
|
||||
}
|
||||
|
||||
void ProjectFile::setDescription(const QVariant& description)
|
||||
{
|
||||
m_description = description;
|
||||
}
|
||||
|
@ -24,16 +24,4 @@ public:
|
||||
|
||||
QVariantList m_tags; //TODO: Implement me!
|
||||
|
||||
QVariant description() const;
|
||||
void setDescription(const QVariant& description);
|
||||
QVariant file() const;
|
||||
void setFile(const QVariant& file);
|
||||
QVariant preview() const;
|
||||
void setPreview(const QVariant& preview);
|
||||
QVariant title() const;
|
||||
void setTitle(const QVariant& title);
|
||||
QString folderId() const;
|
||||
void setFolderId(const QString& folderId);
|
||||
QUrl absoluteStoragePath() const;
|
||||
void setAbsoluteStoragePath(const QUrl& absoluteStoragePath);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user