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:
hjk
2014-08-21 20:35:48 +02:00
parent 8be49ba287
commit ceb6f543bf
9 changed files with 48 additions and 49 deletions

View File

@@ -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));
}