X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fwidgets%2Fwellarray.cpp;h=433a7f5ec60c0f27e25e6e8245c5a6049c96c1e0;hb=379f6ccf486b331a809dde730695af26ec85991d;hp=3ae6eec6305b1eb696bb55affcf070a71d5790dc;hpb=27c0521002ea986b72d9675b99803665516db14c;p=pulseview.git diff --git a/pv/widgets/wellarray.cpp b/pv/widgets/wellarray.cpp index 3ae6eec..433a7f5 100644 --- a/pv/widgets/wellarray.cpp +++ b/pv/widgets/wellarray.cpp @@ -39,8 +39,8 @@ ** ****************************************************************************/ -#include #include +#include #include #include @@ -265,7 +265,7 @@ void WellArray::focusOutEvent(QFocusEvent*) */ void WellArray::keyPressEvent(QKeyEvent* event) { - switch(event->key()) { // Look at the key code + switch (event->key()) { // Look at the key code case Qt::Key_Left: // If 'left arrow'-key, if (curCol > 0) // and cr't not in leftmost col setCurrent(curRow, curCol - 1); // set cr't to next left column @@ -292,5 +292,5 @@ void WellArray::keyPressEvent(QKeyEvent* event) } -} // namespace wellarray +} // namespace widgets } // namespace pv