[Commits] [SCM] claws branch, master, updated. 3.18.0-140-ge56e77d20

paul at claws-mail.org paul at claws-mail.org
Thu Sep 16 17:24:54 CEST 2021


The branch, master has been updated
       via  e56e77d20e2cb9117f161ff5fe039f36d14c1940 (commit)
      from  9283cb6a604242676bad72b907c2a60df9871b0d (commit)

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


- Log -----------------------------------------------------------------
commit e56e77d20e2cb9117f161ff5fe039f36d14c1940
Author: Paul <paul at claws-mail.org>
Date:   Thu Sep 16 16:24:49 2021 +0100

    remove typo semi-colons

diff --git a/src/common/template.c b/src/common/template.c
index fdab4b500..89b793c24 100644
--- 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
index 6484086d0..0f62a6432 100644
--- 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
index f33b59901..f3a6b1b39 100644
--- 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
index 6a9535231..2370a6738 100644
--- 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 at 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
index b2eb7081c..b2c33c453 100644
--- 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
index 2bbe6469e..9ede9e60e 100644
--- 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
index c6e19f2fe..b4808fd5a 100644
--- 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,

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list