From 74d0c61a292161a3d280eafb2d2894460335f4bd Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 19 Mar 2013 20:45:35 +0100 Subject: Update copyright comments --- src/colloquium.c | 6 +++--- src/frame.c | 6 +++--- src/frame.h | 6 +++--- src/layout.c | 6 +++--- src/loadsave.c | 6 +++--- src/loadsave.h | 6 +++--- src/mainwindow.c | 10 +++++----- src/mainwindow.h | 6 +++--- src/presentation.c | 6 +++--- src/presentation.h | 6 +++--- src/render.c | 6 +++--- src/render.h | 6 +++--- src/slideshow.c | 6 +++--- src/slideshow.h | 6 +++--- src/storycode.c | 6 ++++-- src/storycode.h | 6 ++++-- src/stylesheet.c | 6 +++--- src/stylesheet.h | 6 +++--- 18 files changed, 58 insertions(+), 54 deletions(-) diff --git a/src/colloquium.c b/src/colloquium.c index 5af188b..380c67b 100644 --- a/src/colloquium.c +++ b/src/colloquium.c @@ -1,11 +1,11 @@ /* * colloquium.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/frame.c b/src/frame.c index 59c05db..9a4f9e6 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1,11 +1,11 @@ /* * frame.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/frame.h b/src/frame.h index 6c643ae..bc70e04 100644 --- a/src/frame.h +++ b/src/frame.h @@ -1,11 +1,11 @@ /* * frame.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/layout.c b/src/layout.c index 9a4a10f..6a7949b 100644 --- a/src/layout.c +++ b/src/layout.c @@ -1,11 +1,11 @@ /* * layout.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/loadsave.c b/src/loadsave.c index 326a860..86202ee 100644 --- a/src/loadsave.c +++ b/src/loadsave.c @@ -1,11 +1,11 @@ /* * loadsave.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/loadsave.h b/src/loadsave.h index dc8a56f..cea4e0c 100644 --- a/src/loadsave.h +++ b/src/loadsave.h @@ -1,11 +1,11 @@ /* * loadsave.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/mainwindow.c b/src/mainwindow.c index 562a95b..86109cd 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -1,11 +1,11 @@ /* * mainwindow.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. @@ -411,11 +411,11 @@ static gint about_sig(GtkWidget *widget, struct presentation *p) gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(window), PACKAGE_VERSION); gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(window), - "(c) 2012 Thomas White "); + "© 2013 Thomas White "); gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(window), "A tiny presentation program"); gtk_about_dialog_set_license(GTK_ABOUT_DIALOG(window), - "(c) 2012 Thomas White \n"); + "© 2013 Thomas White \n"); gtk_about_dialog_set_website(GTK_ABOUT_DIALOG(window), "http://www.bitwiz.org.uk/"); gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(window), authors); diff --git a/src/mainwindow.h b/src/mainwindow.h index 9134df9..89badd4 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -1,11 +1,11 @@ /* * presentation.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2011 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/presentation.c b/src/presentation.c index d26321d..328514f 100644 --- a/src/presentation.c +++ b/src/presentation.c @@ -1,11 +1,11 @@ /* * presentation.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/presentation.h b/src/presentation.h index 6a31fdd..2af3d0e 100644 --- a/src/presentation.h +++ b/src/presentation.h @@ -1,11 +1,11 @@ /* * presentation.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/render.c b/src/render.c index f6dd329..7743eb2 100644 --- a/src/render.c +++ b/src/render.c @@ -1,11 +1,11 @@ /* * render.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2013 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/render.h b/src/render.h index 2502590..217a7d3 100644 --- a/src/render.h +++ b/src/render.h @@ -1,11 +1,11 @@ /* * render.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2011-2013 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/slideshow.c b/src/slideshow.c index 881ec47..0b2b865 100644 --- a/src/slideshow.c +++ b/src/slideshow.c @@ -1,11 +1,11 @@ /* * slideshow.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2011 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/slideshow.h b/src/slideshow.h index ad1ef64..66f3560 100644 --- a/src/slideshow.h +++ b/src/slideshow.h @@ -1,11 +1,11 @@ /* * slideshow.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2011 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/storycode.c b/src/storycode.c index 53dc650..8cc1a1f 100644 --- a/src/storycode.c +++ b/src/storycode.c @@ -1,9 +1,11 @@ /* * storycode.c * - * Copyright (c) 2012 Thomas White + * Copyright © 2013 Thomas White * - * This program is free software: you can redistribute it and/or modify + * This file is part of Colloquium. + * + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/storycode.h b/src/storycode.h index fbdd53f..2119a25 100644 --- a/src/storycode.h +++ b/src/storycode.h @@ -1,9 +1,11 @@ /* * storycode.h * - * Copyright (c) 2012 Thomas White + * Copyright © 2013 Thomas White * - * This program is free software: you can redistribute it and/or modify + * This file is part of Colloquium. + * + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/stylesheet.c b/src/stylesheet.c index 4a22d2a..b78fc4c 100644 --- a/src/stylesheet.c +++ b/src/stylesheet.c @@ -1,11 +1,11 @@ /* * stylesheet.c * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2011 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/stylesheet.h b/src/stylesheet.h index deb1b08..9391cb7 100644 --- a/src/stylesheet.h +++ b/src/stylesheet.h @@ -1,11 +1,11 @@ /* * stylesheet.h * - * Colloquium - A tiny presentation program + * Copyright © 2013 Thomas White * - * Copyright (c) 2012 Thomas White + * This file is part of Colloquium. * - * This program is free software: you can redistribute it and/or modify + * Colloquium is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. -- cgit v1.2.3