talons

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

commit e56e77d20e2cb9117f161ff5fe039f36d14c1940
parent 9283cb6a604242676bad72b907c2a60df9871b0d
Author: Paul <paul@claws-mail.org>
Date:   Thu, 16 Sep 2021 16:24:49 +0100

remove typo semi-colons

Diffstat:
Msrc/common/template.c | 2+-
Msrc/editaddress.c | 2+-
Msrc/plugins/litehtml_viewer/litehtml/html_tag.cpp | 2+-
Msrc/plugins/vcalendar/month-view.c | 4++--
Msrc/procmime.c | 2+-
Msrc/textview.c | 2+-
Msrc/uri_opener.c | 2+-
7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/common/template.c b/src/common/template.c @@ -46,7 +46,7 @@ static Template *template_load(gchar *filename) } tmpl = g_new(Template, 1); - tmpl->load_filename = g_strdup(filename);; + tmpl->load_filename = g_strdup(filename); tmpl->name = NULL; tmpl->subject = NULL; tmpl->from = NULL; diff --git a/src/editaddress.c b/src/editaddress.c @@ -105,7 +105,7 @@ static gchar* edit_person_get_common_name_from_widgets(void) } if ( cn == NULL || *cn == '\0' ) { g_free(cn); - cn = gtk_editable_get_chars( GTK_EDITABLE(personeditdlg.entry_nick), 0, -1 );; + cn = gtk_editable_get_chars( GTK_EDITABLE(personeditdlg.entry_nick), 0, -1 ); } } #else diff --git a/src/plugins/litehtml_viewer/litehtml/html_tag.cpp b/src/plugins/litehtml_viewer/litehtml/html_tag.cpp @@ -2923,7 +2923,7 @@ void litehtml::html_tag::init_background_paint(position pos, background_paint &b } } - bg_paint.border_radius = m_css_borders.radius.calc_percents(border_box.width, border_box.height);; + bg_paint.border_radius = m_css_borders.radius.calc_percents(border_box.width, border_box.height); bg_paint.border_box = border_box; bg_paint.is_root = have_parent() ? false : true; } diff --git a/src/plugins/vcalendar/month-view.c b/src/plugins/vcalendar/month-view.c @@ -2,7 +2,7 @@ * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client * * Copyright (c) 2007-2008 Juha Kautto (juha at xfce.org) - * Copyright (c) 2008 Colin Leroy (colin@colino.net) + * Copyright (c) 2008-2021 the Claws Mail team and Colin Leroy * * 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 @@ -305,7 +305,7 @@ static void on_button_press_event_cb(GtkWidget *widget , GdkEventButton *event, gpointer *user_data) { month_win *mw = (month_win *)user_data; - gchar *uid = g_object_get_data(G_OBJECT(widget), "UID");; + gchar *uid = g_object_get_data(G_OBJECT(widget), "UID"); gpointer offset = g_object_get_data(G_OBJECT(widget), "offset"); if (event->button == 1) { diff --git a/src/procmime.c b/src/procmime.c @@ -2457,7 +2457,7 @@ static gint procmime_write_message_rfc822(MimeInfo *mimeinfo, FILE *fp) GNode *childnode; MimeInfo *child; gchar buf[BUFFSIZE]; - gboolean skip = FALSE;; + gboolean skip = FALSE; size_t len; debug_print("procmime_write_message_rfc822\n"); diff --git a/src/textview.c b/src/textview.c @@ -1062,7 +1062,7 @@ static void textview_write_body(TextView *textview, MimeInfo *mimeinfo) textview->is_in_signature = FALSE; textview->is_diff = FALSE; - textview->is_attachment = FALSE;; + textview->is_attachment = FALSE; textview->is_in_git_patch = FALSE; procmime_decode_content(mimeinfo); diff --git a/src/uri_opener.c b/src/uri_opener.c @@ -522,7 +522,7 @@ static gint uri_opener_list_btn_pressed(GtkWidget *widget, GdkEventButton *event if (event->button == 3) { GtkTreeModel *model = gtk_tree_view_get_model(list_view); GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list_view)); - GList *selected = gtk_tree_selection_get_selected_rows(selection, &model);; + GList *selected = gtk_tree_selection_get_selected_rows(selection, &model); if (!uri_opener_popup_menu) { uri_opener_popup_action = cm_menu_create_action_group("UriOpenerPopup", uri_opener_popup_entries,