aboutsummaryrefslogtreecommitdiff
path: root/src/gtkutils.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2018-01-16 07:53:22 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2018-01-16 07:53:22 +0000
commit5f403357ddf4202f0a0111a8bf906ef835a72c21 (patch)
tree0e8361d2420d80a74472123fc601dd35e3ed4afa /src/gtkutils.c
parentc660402460e9f7dc43e9f9644bc47e482c023c9f (diff)
fixed typos (#278).
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3605 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/gtkutils.c')
-rw-r--r--src/gtkutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtkutils.c b/src/gtkutils.c
index 8258094d..b1a488af 100644
--- a/src/gtkutils.c
+++ b/src/gtkutils.c
@@ -895,7 +895,7 @@ gboolean gtkut_text_buffer_find(GtkTextBuffer *buffer, const GtkTextIter *iter,
wcs = g_utf8_to_ucs4(str, -1, &items_read, &items_written, &error);
if (error != NULL) {
- g_warning("An error occured while converting a string from UTF-8 to UCS-4: %s\n", error->message);
+ g_warning("An error occurred while converting a string from UTF-8 to UCS-4: %s\n", error->message);
g_error_free(error);
}
if (!wcs || items_written <= 0) return FALSE;
@@ -930,7 +930,7 @@ gboolean gtkut_text_buffer_find_backward(GtkTextBuffer *buffer,
wcs = g_utf8_to_ucs4(str, -1, &items_read, &items_written, &error);
if (error != NULL) {
- g_warning("An error occured while converting a string from UTF-8 to UCS-4: %s\n", error->message);
+ g_warning("An error occurred while converting a string from UTF-8 to UCS-4: %s\n", error->message);
g_error_free(error);
}
if (!wcs || items_written <= 0) return FALSE;