talons

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

commit 12ab4c172e64355532f47b1a713d7ee86b4ad9fd
parent 9470e632a121897af943b4c2972a7f1dfe8a0673
Author: Ricardo Mones <ricardo@mones.org>
Date:   Tue,  4 Oct 2016 15:29:57 +0200

Fix a couple of typos

Diffstat:
Msrc/common/hooks.c | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/common/hooks.c b/src/common/hooks.c @@ -1,6 +1,6 @@ /* - * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team + * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client + * Copyright (C) 1999-2016 Hiroyuki Yamamoto and the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,7 +14,6 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. - * */ #ifdef HAVE_CONFIG_H @@ -68,7 +67,7 @@ guint hooks_register_hook(const gchar *hooklist_name, g_hook_append(hooklist, hook); - debug_print("registed new hook for '%s' as id %lu\n", hooklist_name, hook->hook_id); + debug_print("registered new hook for '%s' as id %lu\n", hooklist_name, hook->hook_id); return hook->hook_id; } @@ -87,7 +86,7 @@ void hooks_unregister_hook(const gchar *hooklist_name, hook = g_hook_get(hooklist, hook_id); cm_return_if_fail(hook != NULL); - debug_print("unregisted hook %lu in '%s'\n", hook->hook_id, hooklist_name); + debug_print("unregistered hook %lu in '%s'\n", hook->hook_id, hooklist_name); g_hook_destroy(hooklist, hook_id); }