| 25 | #include <QContextMenuEvent> |
| 26 | |
| 27 | DWIDGET_USE_NAMESPACE |
| 28 | |
| 29 | TextEditor::TextEditor(QWidget *parent) |
| 30 | : QsciScintilla(parent) |
| 31 | { |
| 32 | d = new TextEditorPrivate(this); |
| 33 | horizontalScrollBar()->setVisible(false); |
| 34 | init(); |
| 35 | } |
| 36 | |
| 37 | TextEditor::~TextEditor() |
| 38 | { |
nothing calls this directly
no test coverage detected