diff --git a/apps/sequence/values/values_controller.cpp b/apps/sequence/values/values_controller.cpp index 3dadebeeb..94ddcfcfb 100644 --- a/apps/sequence/values/values_controller.cpp +++ b/apps/sequence/values/values_controller.cpp @@ -2,8 +2,6 @@ #include #include -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); }