summaryrefslogtreecommitdiff
path: root/src/dlg-ask-password.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 17:40:17 +0200
committerraveit65 <[email protected]>2021-12-11 15:59:33 +0100
commit6c55334ad9b03006686e2db6c6f6167677a2f510 (patch)
treeb558cc0ad6d97c36b449dbcb2afecb3b9002a565 /src/dlg-ask-password.c
parent85909393571d91b3c267afe5341e54bfae5a6d50 (diff)
downloadengrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.bz2
engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.xz
Use a blank line at most
Diffstat (limited to 'src/dlg-ask-password.c')
-rw-r--r--src/dlg-ask-password.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/dlg-ask-password.c b/src/dlg-ask-password.c
index 7f628a2..b62ebaa 100644
--- a/src/dlg-ask-password.c
+++ b/src/dlg-ask-password.c
@@ -44,7 +44,6 @@ typedef struct {
GtkWidget *pw_password_entry;
} DialogData;
-
/* called when the main dialog is closed. */
static void
destroy_cb (GtkWidget *widget,
@@ -53,7 +52,6 @@ destroy_cb (GtkWidget *widget,
g_free (data);
}
-
static void
ask_password__response_cb (GtkWidget *dialog,
int response_id,
@@ -86,7 +84,6 @@ ask_password__response_cb (GtkWidget *dialog,
gtk_widget_destroy (data->dialog);
}
-
static void
dlg_ask_password__common (FrWindow *window,
FrPasswordType pwd_type)
@@ -147,14 +144,12 @@ dlg_ask_password__common (FrWindow *window,
gtk_widget_show (data->dialog);
}
-
void
dlg_ask_password (FrWindow *window)
{
dlg_ask_password__common (window, FR_PASSWORD_TYPE_MAIN);
}
-
void
dlg_ask_password_for_paste_operation (FrWindow *window)
{