Skip to content

Commit a501d4e

Browse files
Fix Code Style On test-mode (#2264)
automated style fixes Co-authored-by: jvogt23 <jvogt23@users.noreply.github.com>
1 parent 9de5737 commit a501d4e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

soccer/src/soccer/ui/main_window.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ void MainWindow::updateDebugLayers(const LogFrame& frame) {
11761176
* The following methods are event listeners for the manual position assignments.
11771177
* In the QT5 event handling system, these methods are automatically connected to the
11781178
* QObject with the relevant name due to their naming scheme and their labels as Q_SLOT functions.
1179-
*
1179+
*
11801180
* For this reason, all of these methods are REQUIRED by the UI - Consolidating them into one method
11811181
* produces unnecessary complications.
11821182
*/
@@ -1212,7 +1212,6 @@ void MainWindow::on_positionReset_14_clicked() { onResetButtonClicked(14); }
12121212

12131213
void MainWindow::on_positionReset_15_clicked() { onResetButtonClicked(15); }
12141214

1215-
12161215
void MainWindow::on_robotPosition_0_currentIndexChanged(int value) {
12171216
onPositionDropdownChanged(0, value);
12181217
}

soccer/src/soccer/ui/main_window.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ private Q_SLOTS:
198198
void on_positionReset_13_clicked();
199199
void on_positionReset_14_clicked();
200200
void on_positionReset_15_clicked();
201-
202201

203202
Q_SIGNALS:
204203
// signal used to let widgets that we're viewing a different log frame now
@@ -222,7 +221,7 @@ private Q_SLOTS:
222221
Processor* const _processor;
223222
bool _has_external_ref;
224223

225-
int current_goalie_num_ {0};
224+
int current_goalie_num_{0};
226225

227226
// Log history, copied from Logger.
228227
// This is used by other controls to get log data without having to copy it

0 commit comments

Comments
 (0)