diff options
author | Bradley Smith | 2008-08-03 19:58:45 +0100 |
---|---|---|
committer | Bradley Smith | 2008-08-03 19:58:45 +0100 |
commit | b039aa807bda4218143356d2a01b89da8f1ac6b5 (patch) | |
tree | f1aa3915808a807526efaed9d1ffd98721fdad02 /src | |
parent | Use pkg-config to check for Guile 1.8. (diff) | |
download | gnurobots-b039aa807bda4218143356d2a01b89da8f1ac6b5.tar.gz |
Correct Window title.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/ui-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |