diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-06-29 19:59:33 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-29 19:59:33 +0000 |
| commit | 3ecef7d8015bffb875f5da07c7bd74a30447d3c8 (patch) | |
| tree | 251238b40ccfab3fa0a48eea65a503baf5c4eb22 /utils/themeeditor/graphics/rbrenderinfo.cpp | |
| parent | f641fc62d89040d72c7908dcf0985f571ddb0531 (diff) | |
| download | rockbox-3ecef7d8015bffb875f5da07c7bd74a30447d3c8.zip rockbox-3ecef7d8015bffb875f5da07c7bd74a30447d3c8.tar.gz rockbox-3ecef7d8015bffb875f5da07c7bd74a30447d3c8.tar.bz2 rockbox-3ecef7d8015bffb875f5da07c7bd74a30447d3c8.tar.xz | |
Theme Editor: Implemented subline rendering, including conditional subline times
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27182 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/graphics/rbrenderinfo.cpp')
| -rw-r--r-- | utils/themeeditor/graphics/rbrenderinfo.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/themeeditor/graphics/rbrenderinfo.cpp b/utils/themeeditor/graphics/rbrenderinfo.cpp index 289d730..3116034 100644 --- a/utils/themeeditor/graphics/rbrenderinfo.cpp +++ b/utils/themeeditor/graphics/rbrenderinfo.cpp @@ -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; |