1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-13 12:03:31 +02:00

Added sylpheed 3.8 beta with additional debian patches

This commit is contained in:
2023-07-06 16:48:42 +02:00
parent 6b5606cadb
commit ba25d8f5ba
8 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
From: Ricardo Mones <mones@debian.org>
Subject: fix typo in import.c file
Last-Updated: 2022-09-14
Forwarded: no
diff --git a/src/import.c b/src/import.c
index a59f11f..b323270 100644
--- a/src/import.c
+++ b/src/import.c
@@ -734,7 +734,7 @@ static void import_filesel_cb(GtkWidget *widget, gpointer data)
utf8_filename = g_filename_to_utf8(filename, -1, NULL, NULL, NULL);
if (!utf8_filename) {
- g_warning("import_filesel_cb(): failed to convert characer set.");
+ g_warning("import_filesel_cb(): failed to convert character set.");
utf8_filename = g_strdup(filename);
}
gtk_entry_set_text(GTK_ENTRY(file_entry), utf8_filename);