Pārlūkot izejas kodu

r.circle: (cosmetics) header fixed, done msg added
(merge from devbr6, https://trac.osgeo.org/grass/changeset/34679)


git-svn-id: https://svn.osgeo.org/grass/grass/trunk@34680 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 16 gadi atpakaļ
vecāks
revīzija
e008617b85
1 mainītis faili ar 5 papildinājumiem un 2 dzēšanām
  1. 5 2
      raster/r.circle/main.c

+ 5 - 2
raster/r.circle/main.c

@@ -1,7 +1,7 @@
 
 
 /****************************************************************************
 /****************************************************************************
  *
  *
- * MODULE:       r.cats
+ * MODULE:       r.circle
  *
  *
  * AUTHOR(S):    Bill Brown - CERL (Jan, 1993)
  * AUTHOR(S):    Bill Brown - CERL (Jan, 1993)
  *               Markus Neteler
  *               Markus Neteler
@@ -9,7 +9,7 @@
  * PURPOSE:      Creates a raster map containing concentric rings
  * PURPOSE:      Creates a raster map containing concentric rings
  *	         around a given point.
  *	         around a given point.
  *
  *
- * COPYRIGHT:    (C) 2006 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2006-2008 by the GRASS Development Team
  *
  *
  *               This program is free software under the GNU General Public
  *               This program is free software under the GNU General Public
  *               License (>=v2). Read the file COPYING that comes with GRASS
  *               License (>=v2). Read the file COPYING that comes with GRASS
@@ -152,6 +152,9 @@ int main(int argc, char *argv[])
     G_command_history(&history);
     G_command_history(&history);
     G_write_history(out_file->answer, &history);
     G_write_history(out_file->answer, &history);
 
 
+    G_done_msg(_("Raster map <%s> created."),
+	       out_file->answer);
+    
     return (EXIT_SUCCESS);
     return (EXIT_SUCCESS);
 }
 }