From 8a5d051fa30aa845a016db0759eb0b15732ede63 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 17 Jul 2015 23:02:06 -0400 Subject: [PATCH] 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. --- .../user_interface/gui/value/TableCellTextControlEditor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/debugger/user_interface/gui/value/TableCellTextControlEditor.h b/src/apps/debugger/user_interface/gui/value/TableCellTextControlEditor.h index 7dfe962428..9db2a6b580 100644 --- a/src/apps/debugger/user_interface/gui/value/TableCellTextControlEditor.h +++ b/src/apps/debugger/user_interface/gui/value/TableCellTextControlEditor.h @@ -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,