[GRASS-SVN] r41104 - grass/branches/releasebranch_6_4/gui/tcltk/gis.m

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Feb 18 16:23:08 EST 2010


Author: neteler
Date: 2010-02-18 16:23:07 -0500 (Thu, 18 Feb 2010)
New Revision: 41104

Modified:
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/barscale.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/dtext.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/frames.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/gridline.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/histogram.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/labels.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/mapprint.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/profile.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rastarrows.tcl
   grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rgbhis.tcl
Log:
semicolon fixes backported from 6.5

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/barscale.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/barscale.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/barscale.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -10,14 +10,14 @@
 ##########################################################################
 
 namespace eval GmBarscale {
-    variable array opt # barscale current options
+    variable array opt ;# barscale current options
     variable count 1
-    variable array lfile # scale
-    variable array lfilemask # scale
+    variable array lfile ;# scale
+    variable array lfilemask ;# scale
     variable optlist
     variable first
-    variable array dup # layer
-    variable placement #LabelEntry widget for scale bar placment coordinates
+    variable array dup ;# layer
+    variable placement ;#LabelEntry widget for scale bar placment coordinates
 };
 
 

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/dtext.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/dtext.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/dtext.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -10,7 +10,7 @@
 ##########################################################################
 
 namespace eval GmDtext {
-    variable array opt # d.text options
+    variable array opt ;# d.text options
     variable count 1
     variable array lfile 
     variable array lfilemask

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/frames.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/frames.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/frames.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -10,14 +10,14 @@
 ##########################################################################
 
 namespace eval GmDframe {
-    variable array opt # frame current options
+    variable array opt ;# frame current options
     variable count 1
-    variable array tree # mon
-    variable array lfile # frame
-    variable array lfilemask # frame
+    variable array tree ;# mon
+    variable array lfile ;# frame
+    variable array lfilemask ;# frame
     variable optlist
     variable first
-    variable array dup # layer
+    variable array dup ;# layer
 }
 
 proc GmDframe::create { tree parent } {

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/gridline.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/gridline.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/gridline.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -9,14 +9,14 @@
 ##########################################################################
 
 namespace eval GmGridline {
-    variable array opt # grid current options
+    variable array opt ;# grid current options
     variable count 1
-    variable array tree # mon
-    variable array lfile # raster
-    variable array lfilemask # raster
+    variable array tree ;# mon
+    variable array lfile ;# raster
+    variable array lfilemask ;# raster
     variable optlist
     variable first
-    variable array dup # vector
+    variable array dup ;# vector
 }
 
 proc GmGridline::create { tree parent } {

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/histogram.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/histogram.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/histogram.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -9,14 +9,14 @@
 ##########################################################################
 
 namespace eval GmHist {
-    variable array opt # hist current options
+    variable array opt ;# hist current options
     variable count 1
-    variable array tree # mon
-    variable array lfile # histogram
-    variable array lfilemask # histogram
+    variable array tree ;# mon
+    variable array lfile ;# histogram
+    variable array lfilemask ;# histogram
     variable optlist
     variable first
-    variable array dup # layer
+    variable array dup ;# layer
 }
 
 proc GmHist::create { tree parent } {

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/labels.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/labels.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/labels.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -10,13 +10,13 @@
 ##########################################################################
 
 namespace eval GmLabels {
-    variable array opt # labels current options
+    variable array opt ;# labels current options
     variable count 1
-    variable array tree # mon    
-    variable array lfile # labels
-    variable array lfilemask # labels
+    variable array tree ;# mon    
+    variable array lfile ;# labels
+    variable array lfilemask ;# labels
     variable optlist
-    variable array dup # layer
+    variable array dup ;# layer
 }
 
 

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/mapprint.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/mapprint.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/mapprint.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -42,7 +42,7 @@
 	variable PVar 
 	variable PView
 	variable PWid 
-	global array can # mon
+	global array can ;# mon
 }
 
 

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/profile.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/profile.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/profile.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -34,7 +34,7 @@
     variable liney1 0.0
     variable linex2 0.0
     variable liney2 0.0	
-    variable array psegment len #
+    variable array psegment len ;#
     variable elevrange 0.0
     variable elevmax 0.0
     variable elevmin 0.0

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rastarrows.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rastarrows.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rastarrows.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -10,13 +10,13 @@
 ##########################################################################
 
 namespace eval GmArrows {
-    variable array opt # arrows current options
+    variable array opt ;# arrows current options
     variable count 1
-    variable array tree # mon
-    variable array lfile # raster
-    variable array lfilemask # raster
+    variable array tree ;# mon
+    variable array lfile ;# raster
+    variable array lfilemask ;# raster
     variable optlist
-    variable array dup # vector
+    variable array dup ;# vector
 }
 
 ###############################################################################

Modified: grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rgbhis.tcl
===================================================================
--- grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rgbhis.tcl	2010-02-18 20:43:38 UTC (rev 41103)
+++ grass/branches/releasebranch_6_4/gui/tcltk/gis.m/rgbhis.tcl	2010-02-18 21:23:07 UTC (rev 41104)
@@ -10,12 +10,12 @@
 ##########################################################################
 
 namespace eval GmRgbhis {
-    variable array opt # rgbhis current options
+    variable array opt ;# rgbhis current options
     variable count 1
-    variable array lfile # rgbhis
-    variable array lfilemask # rgbhis
+    variable array lfile ;# rgbhis
+    variable array lfilemask ;# rgbhis
     variable optlist
-    variable array dup # vector
+    variable array dup ;# vector
 }
 
 



More information about the grass-commit mailing list