1
0
Fork 0
forked from len0rd/rockbox

Theme Editor: Added project settings to the project panel view

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26737 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-10 07:51:21 +00:00
parent cb26aecf92
commit c3a698e46a
6 changed files with 199 additions and 11 deletions

View file

@ -22,6 +22,7 @@
#include "projectmodel.h"
#include "projectfiles.h"
#include "projectsettings.h"
#include "editorwindow.h"
#include <QFile>
@ -173,6 +174,7 @@ ProjectRoot::ProjectRoot(QString config, ProjectModel* model)
/* Showing the files */
children.append(new ProjectFiles(settings, model, this));
children.append(new ProjectSettings(settings, model, this));
}