[Commits] [SCM] claws branch, gtk3, updated. 4.0.0-199-g9ade17f2b

paul at claws-mail.org paul at claws-mail.org
Thu Sep 16 12:19:18 CEST 2021


The branch, gtk3 has been updated
       via  9ade17f2b5430bb137789100d61e5eef793431c6 (commit)
      from  86efe37f90a96dd86666bfb4d5d95b8cbdfee096 (commit)

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


- Log -----------------------------------------------------------------
commit 9ade17f2b5430bb137789100d61e5eef793431c6
Author: paul <paul at claws-mail.org>
Date:   Thu Sep 16 11:19:14 2021 +0100

    remove typo semi-colons

diff --git a/src/common/template.c b/src/common/template.c
index fdab4b500..c15ad8c19 100644
--- 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
index 861b03b76..3059b8b1f 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/mainwindow.c b/src/mainwindow.c
index 46427ca5d..96a04cc3b 100644
--- 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
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 fc13b1414..c2189efd2 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
@@ -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
index e67f8dc78..85a199bbf 100644
--- 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
index 05f94adbf..4bc94acb5 100644
--- 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
index f999f7668..838c20ce9 100644
--- 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,

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


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list