diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-07-30 08:38:38 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-30 08:38:38 +0000 |
| commit | ba41fa537a432210147586b1442ab67b6d400d18 (patch) | |
| tree | d65b1bb4e7d20de518b40db98fb4399f419d36be /utils/themeeditor/gui/syntaxcompleter.h | |
| parent | f8dd370ff8ece4d32589767dc4a9b43398c1cf7e (diff) | |
| download | rockbox-ba41fa537a432210147586b1442ab67b6d400d18.zip rockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.gz rockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.bz2 rockbox-ba41fa537a432210147586b1442ab67b6d400d18.tar.xz | |
Theme Editor: Made auto-complete functional and enabled it by default. Added a small subset of the available tags to the tagdb file, filling it out is todo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27625 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/gui/syntaxcompleter.h')
| -rw-r--r-- | utils/themeeditor/gui/syntaxcompleter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/themeeditor/gui/syntaxcompleter.h b/utils/themeeditor/gui/syntaxcompleter.h index f0e0794..99a1c77 100644 --- a/utils/themeeditor/gui/syntaxcompleter.h +++ b/utils/themeeditor/gui/syntaxcompleter.h @@ -24,11 +24,13 @@ #include <QTreeWidget> +class CodeEditor; + class SyntaxCompleter : public QTreeWidget { Q_OBJECT public: - SyntaxCompleter(QWidget *parent = 0); + SyntaxCompleter(CodeEditor *parent = 0); void filter(QString text); signals: |