aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/displaywindow.c6
-rw-r--r--src/render.c3
-rw-r--r--src/render.h2
3 files changed, 5 insertions, 6 deletions
diff --git a/src/displaywindow.c b/src/displaywindow.c
index b3e9f7ab..fbf49f77 100644
--- a/src/displaywindow.c
+++ b/src/displaywindow.c
@@ -467,8 +467,6 @@ static gint displaywindow_about(GtkWidget *widget, DisplayWindow *dw)
const gchar *authors[] = {
"Thomas White <taw@physics.org>",
- "Erica Bithell <egb10@cam.ac.uk>",
- "Alex Eggeman <ase25@cam.ac.uk>",
NULL
};
@@ -479,11 +477,11 @@ static gint displaywindow_about(GtkWidget *widget, DisplayWindow *dw)
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(window), "hdfsee");
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(window), PACKAGE_VERSION);
gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(window),
- "(c) 2006-2010 Thomas White <taw@physics.org> and others");
+ "(c) 2006-2011 Thomas White <taw@physics.org> and others");
gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(window),
"Quick viewer for HDF files");
gtk_about_dialog_set_license(GTK_ABOUT_DIALOG(window),
- "(c) 2006-2010 Thomas White <taw@physics.org>\n");
+ "(c) 2006-2011 Thomas White <taw@physics.org>\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/render.c b/src/render.c
index 08ced66b..10dd9f10 100644
--- a/src/render.c
+++ b/src/render.c
@@ -3,7 +3,7 @@
*
* Render a high dynamic range buffer in some sensible way
*
- * (c) 2006-2010 Thomas White <taw@physics.org>
+ * (c) 2006-2011 Thomas White <taw@physics.org>
*
* Part of CrystFEL - crystallography with a FEL
*
@@ -193,6 +193,7 @@ static void render_free_data(guchar *data, gpointer p)
}
+/* FIXME: This doesn't belong here at all */
static void show_marked_features(struct image *image, guchar *data,
int w, int h, int binning)
{
diff --git a/src/render.h b/src/render.h
index a193ae4a..214e011e 100644
--- a/src/render.h
+++ b/src/render.h
@@ -3,7 +3,7 @@
*
* Render a high dynamic range buffer in some sensible way
*
- * (c) 2006-2010 Thomas White <taw@physics.org>
+ * (c) 2006-2011 Thomas White <taw@physics.org>
*
* Part of CrystFEL - crystallography with a FEL
*