From: Paul Ramsey Date: Mon, 4 Jan 2010 00:34:19 +0000 (+0000) Subject: Fix the RCSID to actually substitute X-Git-Tag: 1.5.0b1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24e4a7e264c2f5d440e8ceecc65d36db4d8c4d54;p=postgis Fix the RCSID to actually substitute git-svn-id: http://svn.osgeo.org/postgis/trunk@5094 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/loader/shp2pgsql-gui.c b/loader/shp2pgsql-gui.c index 10f24d879..c15a04c7f 100644 --- a/loader/shp2pgsql-gui.c +++ b/loader/shp2pgsql-gui.c @@ -20,7 +20,7 @@ #include "libpq-fe.h" #include "shp2pgsql-core.h" -#define GUI_RCSID "$Revision$" +#define GUI_RCSID "shp2pgsql-gui $Revision$" /* ** Global variables for GUI only @@ -883,7 +883,7 @@ pgui_action_about_open() dlg = gtk_about_dialog_new (); gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(dlg), "Shape to PostGIS"); - gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(dlg), "A utility for loading shape files\nGUI_RCSID"); + gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(dlg), GUI_RCSID); /* gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(dlg), GUI_RCSID); */ gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(dlg), "http://postgis.org/"); gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(dlg), authors);