forked from qt-creator/qt-creator
BinEditor: Also camel-case the namespace
Follows the general pattern better Change-Id: Icbd1f4ca83601c123873d9c0b362d56c13255b3e Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
@@ -81,9 +81,9 @@ void MemoryView::setBinEditorNewWindowRequestAllowed(QWidget *w, bool a)
|
||||
void MemoryView::setBinEditorMarkup(QWidget *w, const QList<MemoryMarkup> &ml)
|
||||
{
|
||||
// Convert into bin editor markup and set.
|
||||
QList<BINEditor::Markup> bml;
|
||||
QList<BinEditor::Markup> bml;
|
||||
foreach (const MemoryMarkup &m, ml)
|
||||
bml.push_back(BINEditor::Markup(m.address, m.length, m.color, m.toolTip));
|
||||
bml.push_back(BinEditor::Markup(m.address, m.length, m.color, m.toolTip));
|
||||
w->setProperty("markup", qVariantFromValue(bml));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user