Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Oct 8, 2021
1 parent d880c4a commit 9200161
Show file tree
Hide file tree
Showing 112 changed files with 3,793 additions and 3,572 deletions.
2 changes: 1 addition & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ BreakBeforeBinaryOperators: false
BreakBeforeTernaryOperators: false
BreakConstructorInitializersBeforeComma: true
BinPackParameters: true
ColumnLimit: 120
ColumnLimit: 90
ConstructorInitializerAllOnOneLineOrOnePerLine: true
DerivePointerBinding: false
PointerBindsToType: true
Expand Down
5 changes: 2 additions & 3 deletions plotjuggler_app/cheatsheet/cheatsheet_dialog.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#include "cheatsheet_dialog.h"
#include "ui_cheatsheet_dialog.h"

CheatsheetDialog::CheatsheetDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::CheatsheetDialog)
CheatsheetDialog::CheatsheetDialog(QWidget* parent)
: QDialog(parent), ui(new Ui::CheatsheetDialog)
{
ui->setupUi(this);

Expand Down
9 changes: 5 additions & 4 deletions plotjuggler_app/cheatsheet/cheatsheet_dialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

#include <QDialog>

namespace Ui {
namespace Ui
{
class CheatsheetDialog;
}

Expand All @@ -12,14 +13,14 @@ class CheatsheetDialog : public QDialog
Q_OBJECT

public:
explicit CheatsheetDialog(QWidget *parent = nullptr);
explicit CheatsheetDialog(QWidget* parent = nullptr);
~CheatsheetDialog();

private slots:
void on_listWidget_currentRowChanged(int currentRow);

private:
Ui::CheatsheetDialog *ui;
Ui::CheatsheetDialog* ui;
};

#endif // CHEATSHEET_DIALOG_H
#endif // CHEATSHEET_DIALOG_H
Loading

0 comments on commit 9200161

Please sign in to comment.