summaryrefslogtreecommitdiff
path: root/clients/tui/nmt-password-dialog.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-09-28 14:50:01 +0200
committerAntonio Cardace <acardace@redhat.com>2020-09-28 16:07:52 +0200
commit740b092fda3d5f45102422f22884c88ea6c42858 (patch)
tree5a049cc10c99efb5ee39606b8b1d0893a9f46db3 /clients/tui/nmt-password-dialog.c
parent328fb90f3e0d4e35975aff63944ac0412d7893a5 (diff)
downloadNetworkManager-ac/clang-format.tar.gz
format: replace tabs for indentation in code commentsac/clang-format
sed -i \ -e 's/^'$'\t'' \*/ */g' \ -e 's/^'$'\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t\t\t'' \*/ */g' \ -e 's/^'$'\t\t\t\t\t\t\t'' \*/ */g' \ $(git ls-files -- '*.[hc]')
Diffstat (limited to 'clients/tui/nmt-password-dialog.c')
-rw-r--r--clients/tui/nmt-password-dialog.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/clients/tui/nmt-password-dialog.c b/clients/tui/nmt-password-dialog.c
index 2704312429..fb2cf7d712 100644
--- a/clients/tui/nmt-password-dialog.c
+++ b/clients/tui/nmt-password-dialog.c
@@ -91,8 +91,8 @@ maybe_save_input_and_exit(NmtNewtWidget *widget, gpointer dialog)
int i;
/* This gets invoked when the user types Return in the final entry,
- * but the form may not be fully valid in that case.
- */
+ * but the form may not be fully valid in that case.
+ */
if (!nmt_newt_widget_get_valid(priv->secret_grid))
return;
@@ -245,10 +245,10 @@ nmt_password_dialog_class_init(NmtPasswordDialogClass *dialog_class)
object_class->finalize = nmt_password_dialog_finalize;
/**
- * NmtPasswordDialog:request-id:
- *
- * The request ID from the #NMSecretAgentSimple
- */
+ * NmtPasswordDialog:request-id:
+ *
+ * The request ID from the #NMSecretAgentSimple
+ */
g_object_class_install_property(
object_class,
PROP_REQUEST_ID,
@@ -258,10 +258,10 @@ nmt_password_dialog_class_init(NmtPasswordDialogClass *dialog_class)
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
/**
- * NmtPasswordDialog:prompt:
- *
- * The prompt text.
- */
+ * NmtPasswordDialog:prompt:
+ *
+ * The prompt text.
+ */
g_object_class_install_property(
object_class,
PROP_PROMPT,
@@ -271,12 +271,12 @@ nmt_password_dialog_class_init(NmtPasswordDialogClass *dialog_class)
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
/**
- * NmtPasswordDialog:secrets:
- *
- * The array of request secrets
- *
- * Element-Type: #NMSecretAgentSimpleSecret.
- */
+ * NmtPasswordDialog:secrets:
+ *
+ * The array of request secrets
+ *
+ * Element-Type: #NMSecretAgentSimpleSecret.
+ */
g_object_class_install_property(
object_class,
PROP_SECRETS,