about summary refs log tree commit diff
path: root/clients/tui/nm-editor-utils.h
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2021-01-11 18:07:03 +0100
committerSebastien Bacher <seb128@ubuntu.com>2021-01-11 18:15:57 +0100
commit2567f558da3eb9911678227d4aeb15162e707d89 (patch)
tree13c80b0e091c8ba585b14b966cda998f95f1936d /clients/tui/nm-editor-utils.h
parent02d99ffd62ede29cffcb45fcbe33d044b7406d3a (diff)
parentf54032b30e1ddd84f10a339e0caf493772e049a7 (diff)
Merge branch 'debian/master' into ubuntu/master
Diffstat (limited to 'clients/tui/nm-editor-utils.h')
-rw-r--r--clients/tui/nm-editor-utils.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/clients/tui/nm-editor-utils.h b/clients/tui/nm-editor-utils.h
index 015170af..40ad6c8f 100644
--- a/clients/tui/nm-editor-utils.h
+++ b/clients/tui/nm-editor-utils.h
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0+
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * Copyright (C) 2012, 2013 Red Hat, Inc.
  */
@@ -7,18 +7,16 @@
 #define NM_EDITOR_UTILS_H
 
 typedef struct {
-	const char *name;
-	GType setting_type;
-	GType slave_setting_type;
-	GType device_type;
-	gboolean virtual;
+    const char *name;
+    GType       setting_type;
+    GType       slave_setting_type;
+    GType       device_type;
+    gboolean virtual;
 } NMEditorConnectionTypeData;
 
-NMEditorConnectionTypeData **nm_editor_utils_get_connection_type_list (void);
-NMEditorConnectionTypeData  *nm_editor_utils_get_connection_type_data (NMConnection *conn);
+NMEditorConnectionTypeData **nm_editor_utils_get_connection_type_list(void);
+NMEditorConnectionTypeData * nm_editor_utils_get_connection_type_data(NMConnection *conn);
 
-NMConnection *nm_editor_utils_create_connection (GType         type,
-                                                 NMConnection *master,
-                                                 NMClient     *client);
+NMConnection *nm_editor_utils_create_connection(GType type, NMConnection *master, NMClient *client);
 
 #endif /* NM_EDITOR_UTILS_H */