talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 52a3354ec9a2f285399bd0a50a6aca64cfad3800
parent 1a9ec36b0a3a29b6ad2397d2741fcb080d51fba3
Author: paul <paul@claws-mail.org>
Date:   Tue, 28 Dec 2021 12:02:40 +0000

fix English usage

Diffstat:
Msrc/compose.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/compose.c b/src/compose.c @@ -10868,7 +10868,7 @@ static void entry_copy_clipboard(GtkWidget *entry) gtk_clipboard_get(GDK_SELECTION_CLIPBOARD)); } -static void text_to_big_alert(Compose *compose, glong size) { +static void text_too_big_alert(Compose *compose, glong size) { GtkDialogFlags flags = GTK_DIALOG_DESTROY_WITH_PARENT; GtkMessageDialog* dialog = gtk_message_dialog_new( GTK_WINDOW(compose->window), @@ -10897,7 +10897,7 @@ static void entry_paste_clipboard(Compose *compose, GtkWidget *entry, glong len = g_utf8_strlen(contents, -1); if (len > MAX_ALLOCA_MEM_SIZE) { - text_to_big_alert(compose, len); + text_too_big_alert(compose, len); return; } /* we shouldn't delete the selection when middle-click-pasting, or we