diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-06-06 03:35:40 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-06 03:35:40 +0000 |
| commit | f3491e97d0d96f8df8a3c5a16efdef19c0796770 (patch) | |
| tree | b5de3be4832afe9ab7e213ea12d8faa2a3335632 /utils/themeeditor/skindocument.h | |
| parent | 5619b4f6cf968b8d5820d214790ec29f7f109a63 (diff) | |
| download | rockbox-f3491e97d0d96f8df8a3c5a16efdef19c0796770.zip rockbox-f3491e97d0d96f8df8a3c5a16efdef19c0796770.tar.gz rockbox-f3491e97d0d96f8df8a3c5a16efdef19c0796770.tar.bz2 rockbox-f3491e97d0d96f8df8a3c5a16efdef19c0796770.tar.xz | |
Theme Editor: Began working on open document functionality (still incomplete), fixed a nested conditional parsing bug in the parser, and fixed segfault-on-codegen-from-empty-tree bug
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26609 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/skindocument.h')
| -rw-r--r-- | utils/themeeditor/skindocument.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/utils/themeeditor/skindocument.h b/utils/themeeditor/skindocument.h index f222543..4546c42 100644 --- a/utils/themeeditor/skindocument.h +++ b/utils/themeeditor/skindocument.h @@ -33,8 +33,15 @@ class SkinDocument : public QWidget { Q_OBJECT public: - const QString fileFilter; - + static QString fileFilter() + { + return tr("WPS Files (*.wps *.rwps);;" + "SBS Files (*.sbs *.rsbs);;" + "FMS Files (*.fms *.rfms);;" + "All Skin Files (*.wps *.rwps *.sbs " + "*.rsbs *.fms *.rfms);;" + "All Files (*.*)"); + } SkinDocument(QWidget *parent = 0); virtual ~SkinDocument(); |