marlin r1286 - trunk/src



Author: iain
Date: Wed Oct  1 23:36:44 2008
New Revision: 1286
URL: http://svn.gnome.org/viewvc/marlin?rev=1286&view=rev

Log:
Fix copyright


Modified:
   trunk/src/ChangeLog
   trunk/src/marlin-window-menu.c

Modified: trunk/src/marlin-window-menu.c
==============================================================================
--- trunk/src/marlin-window-menu.c	(original)
+++ trunk/src/marlin-window-menu.c	Wed Oct  1 23:36:44 2008
@@ -2,10 +2,10 @@
 /*
  *  Authors: Iain Holmes <iain gnome org>
  *
- *  Copyright 2002-2006 Iain Holmes
+ *  Copyright 2002-2008 Iain Holmes
  *
  *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of version 2 of the GNU General Public 
+ *  it under the terms of version 2 of the GNU General Public
  *  License as published by the Free Foundation.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -164,26 +164,26 @@
 {
 	MarlinWindow *window;
 	static GtkWidget *about = NULL;
-	const char *authors[2] = {"Iain <iain gnome org>", NULL};
-	const char *documentors[] = {"Iain <iain gnome org>", NULL};
-	
+	const char *authors[2] = {"iain <iain gnome org>", NULL};
+	const char *documentors[] = {"iain <iain gnome org>", NULL};
+
 	if (about != NULL) {
 		gtk_window_present (GTK_WINDOW (about));
 	} else {
 		GdkPixbuf *logo = NULL;
 		char *logo_file;
-		
+
 		window = MARLIN_WINDOW (data);
 
 		logo_file = marlin_file ("marlin/marlin-logo.png");
 		logo = gdk_pixbuf_new_from_file (logo_file, NULL);
 		g_free (logo_file);
-		
+
 		about = g_object_new (GTK_TYPE_ABOUT_DIALOG,
 				      "name", "Marlin",
 				      "comments", _("A sample editor for Gnome."),
 				      "version", VERSION,
-				      "copyright", "Copyright \xc2\xa9 2002-2005 Iain Holmes",
+				      "copyright", "Copyright \xc2\xa9 2002-2008 Iain Holmes",
 				      "authors", authors,
 				      "documenters", documentors,
 				      /*
@@ -195,9 +195,9 @@
 				      "logo", logo,
 				      "website", "http://marlin.sourceforge.net";,
 				      NULL);
-		
+
 		gtk_window_set_icon (GTK_WINDOW (about), logo);
-		gtk_window_set_transient_for (GTK_WINDOW (about), 
+		gtk_window_set_transient_for (GTK_WINDOW (about),
 					      GTK_WINDOW (window));
 		gtk_window_set_destroy_with_parent (GTK_WINDOW (about), TRUE);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]