[apps/sequence/values_controller] Clean namespace usage

This commit is contained in:
Ruben Dashyan
2019-09-03 17:42:29 +02:00
parent a565cb32b9
commit 9e8125f700

View File

@@ -2,8 +2,6 @@
#include <assert.h>
#include <cmath>
using namespace Shared;
namespace Sequence {
ValuesController::ValuesController(Responder * parentResponder,InputEventHandlerDelegate * inputEventHandlerDelegate, Interval * interval, ButtonRowController * header) :
@@ -26,7 +24,7 @@ ValuesController::ValuesController(Responder * parentResponder,InputEventHandler
}, this), k_font)
{
for (int i = 0; i < k_maxNumberOfSequences; i++) {
m_sequenceTitleCells[i].setOrientation(FunctionTitleCell::Orientation::HorizontalIndicator);
m_sequenceTitleCells[i].setOrientation(Shared::FunctionTitleCell::Orientation::HorizontalIndicator);
}
setupAbscissaCellsAndTitleCells(inputEventHandlerDelegate);
}