Theme Editor: Implemented subline rendering, including conditional subline times

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27182 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-29 19:59:33 +00:00
parent f641fc62d8
commit 3ecef7d801
5 changed files with 83 additions and 0 deletions

View file

@ -29,6 +29,11 @@ RBRenderInfo::RBRenderInfo(ParseTreeModel* model, ProjectModel* project,
{
}
RBRenderInfo::RBRenderInfo()
: mProject(0), mSettings(0), mDevice(0), mScreen(0), mModel(0)
{
}
RBRenderInfo::RBRenderInfo(const RBRenderInfo &other)
{
mProject = other.mProject;