1
0
Fork 0
forked from len0rd/rockbox

regtoosl/qeditor: remove unused code

Change-Id: I79ad3151d6a500903786b3467c271b43741f8fee
Reviewed-on: http://gerrit.rockbox.org/1021
Reviewed-by: Amaury Pouly <amaury.pouly@gmail.com>
This commit is contained in:
Amaury Pouly 2014-10-22 17:57:51 +02:00
parent 88053b8832
commit edaeee168d
2 changed files with 0 additions and 118 deletions

View file

@ -275,30 +275,6 @@ protected:
QToolButton *m_underline_button;
};
class MySwitchableTextEditor : public QWidget
{
Q_OBJECT
public:
MySwitchableTextEditor(QWidget *parent = 0);
QString GetTextHtml();
void SetTextHtml(const QString& text);
void SetEditorMode(bool en);
MyTextEditor *GetEditor();
QLineEdit *GetLineEdit();
QLabel *GetLabel();
void SetLineMode(bool en);
bool IsModified();
protected:
void UpdateVisibility();
bool m_editor_mode;
bool m_line_mode;
QLabel *m_label;
MyTextEditor *m_edit;
QLineEdit *m_line;
};
class BackendSelector : public QWidget
{
Q_OBJECT