diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-12-10 13:49:39 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-12-10 13:49:39 +0100 |
commit | 931fbf84e5a46649c9adf073e9b3d1d776af0b54 (patch) | |
tree | d16f098aae7f646534f2f6cb8dc2820040a3384f /confui/ui_node.h | |
parent | 2baf3b730dc20c85e4a5aa2fb609dd4703695908 (diff) |
fix clang-format configuration and run `clang-format`
Diffstat (limited to 'confui/ui_node.h')
-rw-r--r-- | confui/ui_node.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/confui/ui_node.h b/confui/ui_node.h index 3aa16e5..eb07f6d 100644 --- a/confui/ui_node.h +++ b/confui/ui_node.h @@ -1,11 +1,11 @@ #pragma once -#include <QWidget> -#include <QLabel> -#include <QHBoxLayout> #include <QCheckBox> +#include <QHBoxLayout> +#include <QLabel> #include <QPushButton> #include <QString> +#include <QWidget> #include "mesh_connector.h" @@ -14,14 +14,14 @@ class CDNodeWidget : public QWidget { Q_OBJECT private: - cd_s_node* _node = nullptr; + cd_s_node *_node = nullptr; cd_uid_t _id; - QHBoxLayout* main_layout; - QLabel* label_node_name; - QLabel* label_node_address; - QCheckBox* switch_on_off; - QPushButton* button_add_remove; + QHBoxLayout *main_layout; + QLabel *label_node_name; + QLabel *label_node_address; + QCheckBox *switch_on_off; + QPushButton *button_add_remove; public: CDNodeWidget(QWidget *parent = nullptr); |