summaryrefslogtreecommitdiff
path: root/src/dlg-ask-password.c
diff options
context:
space:
mode:
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)
{