summary refs log tree commit diff
path: root/src/nmtui/nmt-route-entry.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2022-02-14 19:23:28 +0100
committerMichael Biebl <biebl@debian.org>2022-02-14 19:23:28 +0100
commit2f94dba7385fd0e0ef19a06eb4a2fcf6c43d7946 (patch)
treee2222f5577115985dd52044d2991253403cdd952 /src/nmtui/nmt-route-entry.c
parent88c227d90a6b7b388c5c85d72802a0ca8f05ed5c (diff)
New upstream version 1.35.91 upstream/1.35.91
Diffstat (limited to 'src/nmtui/nmt-route-entry.c')
-rw-r--r--src/nmtui/nmt-route-entry.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nmtui/nmt-route-entry.c b/src/nmtui/nmt-route-entry.c
index 5cd150b0..e186fff2 100644
--- a/src/nmtui/nmt-route-entry.c
+++ b/src/nmtui/nmt-route-entry.c
@@ -75,9 +75,9 @@ nmt_route_entry_init(NmtRouteEntry *entry)
 {}
 
 static gboolean
-entry_validity_transform_to_warning_label(GBinding *    binding,
+entry_validity_transform_to_warning_label(GBinding     *binding,
                                           const GValue *source_value,
-                                          GValue *      target_value,
+                                          GValue       *target_value,
                                           gpointer      user_data)
 {
     if (g_value_get_boolean(source_value))
@@ -109,8 +109,8 @@ static void
 nmt_route_entry_constructed(GObject *object)
 {
     NmtRouteEntryPrivate *priv = NMT_ROUTE_ENTRY_GET_PRIVATE(object);
-    NmtNewtGrid *         grid = NMT_NEWT_GRID(object);
-    NmtNewtWidget *       warning_label;
+    NmtNewtGrid          *grid = NMT_NEWT_GRID(object);
+    NmtNewtWidget        *warning_label;
 
     priv->dest     = nmt_ip_entry_new(priv->ip_entry_width, priv->family, TRUE, FALSE);
     priv->next_hop = nmt_ip_entry_new(priv->ip_entry_width, priv->family, FALSE, TRUE);
@@ -213,7 +213,7 @@ nmt_route_entry_get_property(GObject *object, guint prop_id, GValue *value, GPar
 static void
 nmt_route_entry_class_init(NmtRouteEntryClass *entry_class)
 {
-    GObjectClass *      object_class = G_OBJECT_CLASS(entry_class);
+    GObjectClass       *object_class = G_OBJECT_CLASS(entry_class);
     NmtNewtWidgetClass *widget_class = NMT_NEWT_WIDGET_CLASS(entry_class);
 
     g_type_class_add_private(entry_class, sizeof(NmtRouteEntryPrivate));