Debugger: Minor fix to text control editor.

TableCellTextControlEditor:
- Switch BTextControl inheritance to public, as gcc2 otherwise fails to
  properly dynamic_cast to BTextControl, which breaks the latter
  internally.
This commit is contained in:
Rene Gollent
2015-07-17 23:12:46 -04:00
parent 220ccc72f6
commit 8a5d051fa3
@@ -12,7 +12,7 @@
// common base class for editors that input a value via a text field
class TableCellTextControlEditor : public TableCellFormattedValueEditor,
protected BTextControl {
public BTextControl {
public:
TableCellTextControlEditor(
::Value* initialValue,