[Goodies-commits] r6460 - in xfce4-dict/trunk: . lib panel-plugin src

Enrico Troeger enrico at xfce.org
Wed Jan 14 20:45:58 CET 2009


Author: enrico
Date: 2009-01-14 19:45:58 +0000 (Wed, 14 Jan 2009)
New Revision: 6460

Modified:
   xfce4-dict/trunk/README
   xfce4-dict/trunk/lib/common.c
   xfce4-dict/trunk/lib/common.h
   xfce4-dict/trunk/lib/dictd.c
   xfce4-dict/trunk/lib/dictd.h
   xfce4-dict/trunk/lib/gui.c
   xfce4-dict/trunk/lib/gui.h
   xfce4-dict/trunk/lib/libdict.h
   xfce4-dict/trunk/lib/prefs.c
   xfce4-dict/trunk/lib/prefs.h
   xfce4-dict/trunk/lib/searchentry.c
   xfce4-dict/trunk/lib/searchentry.h
   xfce4-dict/trunk/lib/spell.c
   xfce4-dict/trunk/lib/spell.h
   xfce4-dict/trunk/lib/wraplabel.c
   xfce4-dict/trunk/lib/wraplabel.h
   xfce4-dict/trunk/panel-plugin/xfce4-dict-plugin.c
   xfce4-dict/trunk/src/popup_plugin.c
   xfce4-dict/trunk/src/popup_plugin.h
   xfce4-dict/trunk/src/xfce4-dict.c
   xfce4-dict/trunk/xfce4-dict.1
Log:
Update copyright years.
Fix a few typos.

Modified: xfce4-dict/trunk/README
===================================================================
--- xfce4-dict/trunk/README	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/README	2009-01-14 19:45:58 UTC (rev 6460)
@@ -31,7 +31,7 @@
 
 Please note:
 there is a limitation of max. 12 characters in passing a search term
-to xfce4-dict when the panel plugin is loaded. That is, if pass a search
+to xfce4-dict when the panel plugin is loaded. That is, if you pass a search
 term as command line argument(s) to xfce4-dict which is longer than 12
 characters, it is truncated. To be exact, the limit is 12 bytes so if
 the search term contains any non-ASCII characters it might be even less

Modified: xfce4-dict/trunk/lib/common.c
===================================================================
--- xfce4-dict/trunk/lib/common.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/common.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/common.h
===================================================================
--- xfce4-dict/trunk/lib/common.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/common.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/dictd.c
===================================================================
--- xfce4-dict/trunk/lib/dictd.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/dictd.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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
@@ -569,7 +569,7 @@
 }
 
 
-static void ask_server(DictData *dd)
+static gpointer ask_server(DictData *dd)
 {
 	gint fd, i;
 	static gchar cmd[BUF_SIZE];
@@ -579,7 +579,7 @@
 		dd->query_status = NO_CONNECTION;
 		g_idle_add((GSourceFunc) process_server_response, dd);
 		g_thread_exit(NULL);
-		return;
+		return NULL;
 	}
 	dd->query_is_running = TRUE;
 	dd->query_status = NO_CONNECTION;
@@ -608,6 +608,7 @@
 	g_idle_add((GSourceFunc) process_server_response, dd);
 
 	g_thread_exit(NULL);
+	return NULL;
 }
 
 

Modified: xfce4-dict/trunk/lib/dictd.h
===================================================================
--- xfce4-dict/trunk/lib/dictd.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/dictd.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/gui.c
===================================================================
--- xfce4-dict/trunk/lib/gui.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/gui.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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
@@ -717,7 +717,7 @@
 		"destroy-with-parent", TRUE,
 		"authors", authors,
 		"comments", _("A client program to query different dictionaries."),
-		"copyright", _("Copyright \302\251 2006-2008 Enrico Tröger"),
+		"copyright", _("Copyright \302\251 2006-2009 Enrico Tröger"),
 		"website", "http://goodies.xfce.org/projects/applications/xfce4-dict",
 		"logo", logo,
 		"translator-credits", _("translator-credits"),

Modified: xfce4-dict/trunk/lib/gui.h
===================================================================
--- xfce4-dict/trunk/lib/gui.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/gui.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/libdict.h
===================================================================
--- xfce4-dict/trunk/lib/libdict.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/libdict.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/prefs.c
===================================================================
--- xfce4-dict/trunk/lib/prefs.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/prefs.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/prefs.h
===================================================================
--- xfce4-dict/trunk/lib/prefs.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/prefs.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/searchentry.c
===================================================================
--- xfce4-dict/trunk/lib/searchentry.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/searchentry.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2008-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/searchentry.h
===================================================================
--- xfce4-dict/trunk/lib/searchentry.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/searchentry.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/spell.c
===================================================================
--- xfce4-dict/trunk/lib/spell.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/spell.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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
@@ -281,7 +281,7 @@
 
 	/* sort the dictionary list */
 	g_ptr_array_sort(dicts, sort_dicts);
-	
+
 	list = g_new0(gchar *, dicts->len + 1);
 	for (i = 0; i < dicts->len; i++)
 	{

Modified: xfce4-dict/trunk/lib/spell.h
===================================================================
--- xfce4-dict/trunk/lib/spell.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/spell.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/lib/wraplabel.c
===================================================================
--- xfce4-dict/trunk/lib/wraplabel.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/wraplabel.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,8 +1,8 @@
 /*
  *      wraplabel.c
  *
- *      Copyright 2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
- *      Copyright 2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
+ *      Copyright 2008-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *      Copyright 2008-2009 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
  *
  *      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

Modified: xfce4-dict/trunk/lib/wraplabel.h
===================================================================
--- xfce4-dict/trunk/lib/wraplabel.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/lib/wraplabel.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,8 +1,8 @@
 /*
  *      wraplabel.h
  *
- *      Copyright 2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
- *      Copyright 2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
+ *      Copyright 2008-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *      Copyright 2008-2009 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
  *
  *      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

Modified: xfce4-dict/trunk/panel-plugin/xfce4-dict-plugin.c
===================================================================
--- xfce4-dict/trunk/panel-plugin/xfce4-dict-plugin.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/panel-plugin/xfce4-dict-plugin.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/src/popup_plugin.c
===================================================================
--- xfce4-dict/trunk/src/popup_plugin.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/src/popup_plugin.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2008      Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2008-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *  Copyright 2006      Darren Salt
  *  Copyright 2002-2006 Olivier Fourdan
  *

Modified: xfce4-dict/trunk/src/popup_plugin.h
===================================================================
--- xfce4-dict/trunk/src/popup_plugin.h	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/src/popup_plugin.h	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2008-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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

Modified: xfce4-dict/trunk/src/xfce4-dict.c
===================================================================
--- xfce4-dict/trunk/src/xfce4-dict.c	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/src/xfce4-dict.c	2009-01-14 19:45:58 UTC (rev 6460)
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+ *  Copyright 2006-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
  *
  *  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
@@ -140,7 +140,7 @@
 	if (show_version)
 	{
 		g_print("%s %s (Xfce %s)\n\n", PACKAGE, PACKAGE_VERSION, xfce_version_string());
-		g_print("%s\n", "Copyright (c) 2006-2008");
+		g_print("%s\n", "Copyright (c) 2006-2009");
 		g_print("\tEnrico Tröger <enrico at xfce.org>\n\n");
 		g_print(_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
 		g_print("\n");

Modified: xfce4-dict/trunk/xfce4-dict.1
===================================================================
--- xfce4-dict/trunk/xfce4-dict.1	2009-01-14 19:43:50 UTC (rev 6459)
+++ xfce4-dict/trunk/xfce4-dict.1	2009-01-14 19:45:58 UTC (rev 6460)
@@ -41,7 +41,7 @@
 .SH "BUGS"
 .PP
 There is a limitation of max. 12 characters in passing a search term
-to xfce4\-dict when the panel plugin is loaded. That is, if pass a search
+to xfce4\-dict when the panel plugin is loaded. That is, if you pass a search
 term as command line argument(s) to xfce4\-dict which is longer than 12
 characters, it is truncated. To be exact, the limit is 12 bytes so if
 the search term contains any non\-ASCII characters it might be even less




More information about the Goodies-commits mailing list