summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Smith2008-08-03 19:58:45 +0100
committerBradley Smith2008-08-03 19:58:45 +0100
commitb039aa807bda4218143356d2a01b89da8f1ac6b5 (patch)
treef1aa3915808a807526efaed9d1ffd98721fdad02
parentUse pkg-config to check for Guile 1.8. (diff)
downloadgnurobots-b039aa807bda4218143356d2a01b89da8f1ac6b5.tar.gz
Correct Window title.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
-rw-r--r--include/ui-window-private.h2
-rw-r--r--include/ui-window.h2
-rw-r--r--src/ui-window.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/include/ui-window-private.h b/include/ui-window-private.h
index cfb8b63..f4ba459 100644
--- a/include/ui-window-private.h
+++ b/include/ui-window-private.h
@@ -1,6 +1,6 @@
/* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
- * GNU Robots UI Test, ui-window-private.h.
+ * GNU Robots, ui-window-private.h.
*
* GNU Robots is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/include/ui-window.h b/include/ui-window.h
index 7b6c06f..d9740a2 100644
--- a/include/ui-window.h
+++ b/include/ui-window.h
@@ -1,6 +1,6 @@
/* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
- * GNU Robots UI Test, ui-window.h.
+ * GNU Robots, ui-window.h.
*
* GNU Robots is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/ui-window.c b/src/ui-window.c
index 8758c64..fb6f2ed 100644
--- a/src/ui-window.c
+++ b/src/ui-window.c
@@ -1,6 +1,6 @@
/* Copyright (C) 2008 Bradley Smith <brad@brad-smith.co.uk>
*
- * GNU Robots UI Test, ui-window.c.
+ * GNU Robots, ui-window.c.
*
* GNU Robots is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -54,7 +54,7 @@ static void ui_window_init(UIWindow *window)
g_signal_connect(G_OBJECT(window), "destroy",
G_CALLBACK(on_ui_window_destroy), NULL);
- gtk_window_set_title(GTK_WINDOW(window), "UI Test");
+ gtk_window_set_title(GTK_WINDOW(window), "GNU Robots");
gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
}