talons

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

commit 9ade17f2b5430bb137789100d61e5eef793431c6
parent 86efe37f90a96dd86666bfb4d5d95b8cbdfee096
Author: paul <paul@claws-mail.org>
Date:   Thu, 16 Sep 2021 11:19:14 +0100

remove typo semi-colons

Diffstat:
Msrc/common/template.c | 4++--
Msrc/editaddress.c | 2+-
Msrc/mainwindow.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+-
8 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/common/template.c b/src/common/template.c @@ -1,7 +1,7 @@ /* * Claws Mail templates subsystem * Copyright (C) 2001 Alexander Barinov - * Copyright (C) 2001-2018 The Claws Mail team + * Copyright (C) 2001-2021 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 @@ -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/mainwindow.c b/src/mainwindow.c @@ -2765,7 +2765,7 @@ void main_window_toggle_message_view(MainWindow *mainwin) "pan-down-symbolic", GTK_ICON_SIZE_MENU); else gtk_image_set_from_icon_name(GTK_IMAGE(mainwin->summaryview->toggle_arrow), - "pan-up-symbolic", GTK_ICON_SIZE_MENU);; + "pan-up-symbolic", GTK_ICON_SIZE_MENU); if (mainwin->messageview->visible == FALSE) messageview_clear(mainwin->messageview); 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 @@ -303,7 +303,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 @@ -2496,7 +2496,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 @@ -1041,7 +1041,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 @@ -517,7 +517,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,