forked from len0rd/rockbox
Theme Editor: Fixed some compiler warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27023 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4e26db3f35
commit
d18aa51ded
2 changed files with 3 additions and 1 deletions
|
@ -39,6 +39,8 @@ const RBRenderInfo& RBRenderInfo::operator=(const RBRenderInfo& other)
|
||||||
mProject = other.mProject;
|
mProject = other.mProject;
|
||||||
mScreen = other.mScreen;
|
mScreen = other.mScreen;
|
||||||
mModel = other.mModel;
|
mModel = other.mModel;
|
||||||
|
|
||||||
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
RBRenderInfo::~RBRenderInfo()
|
RBRenderInfo::~RBRenderInfo()
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
|
|
||||||
RBScreen::RBScreen(ProjectModel* project, QGraphicsItem *parent) :
|
RBScreen::RBScreen(ProjectModel* project, QGraphicsItem *parent) :
|
||||||
QGraphicsItem(parent), project(project), backdrop(0)
|
QGraphicsItem(parent), backdrop(0), project(project)
|
||||||
{
|
{
|
||||||
|
|
||||||
width = safeSetting(project, "#screenwidth", "300").toInt();
|
width = safeSetting(project, "#screenwidth", "300").toInt();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue