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:
Robert Bieber 2010-06-21 18:24:30 +00:00
parent 4e26db3f35
commit d18aa51ded
2 changed files with 3 additions and 1 deletions

View file

@ -39,6 +39,8 @@ const RBRenderInfo& RBRenderInfo::operator=(const RBRenderInfo& other)
mProject = other.mProject;
mScreen = other.mScreen;
mModel = other.mModel;
return *this;
}
RBRenderInfo::~RBRenderInfo()

View file

@ -25,7 +25,7 @@
#include <QFile>
RBScreen::RBScreen(ProjectModel* project, QGraphicsItem *parent) :
QGraphicsItem(parent), project(project), backdrop(0)
QGraphicsItem(parent), backdrop(0), project(project)
{
width = safeSetting(project, "#screenwidth", "300").toInt();