Changeset 4176


Ignore:
Timestamp:
Feb 12, 2014, 7:26:05 AM (10 years ago)
Author:
gah
Message:

typos

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/zoo/drawing/tool.xml

    • Property svn:mime-type changed from application/xml to text/plain
    r3669 r4176  
    6262     <path>input.choice(analysis)</path>
    6363    </variable>
     64    <variable>
     65     <name>linewidth</name>
     66     <path>input.integer(linewidth)</path>
     67    </variable>
    6468   </substitutions>
    6569   <components>
     
    130134     <coords>0 .7 .25 .7 .35 .4 .65 .4 .75 .7 1 .7</coords>
    131135     <color>red</color>
    132      <linewidth>2</linewidth>
     136     <linewidth>${linewidth}</linewidth>
    133137    </line>
    134138    <rectangle id="border">
     
    169173   </components>
    170174  </drawing>
     175  <integer id="linewidth">
     176    <about>
     177      <label>Line width</label>
     178      <description>Number of pixels for linewidth.</description>
     179    </about>
     180    <min>1</min>
     181    <max>10</max>
     182    <default>2</default>
     183  </integer>
    171184  <number id="feature_height">
    172185   <about>
  • trunk/gui/scripts/analyzer.tcl

    r3647 r4176  
    443443    if {$status != 0} {
    444444        $itk_component(runinfo) configure -state normal
    445         $itk_component(runinfo) delete 1.0 end
    446         $itk_component(runinfo) insert end "Problem launching job:\n\n" text
     445        # Don't erase program error messages.
     446        # $itk_component(runinfo) delete 1.0 end
     447        $itk_component(runinfo) insert end "\n\nProblem launching job:\n\n" text
    447448        _simOutput $result
    448449        $itk_component(runinfo) configure -state disabled
  • trunk/gui/scripts/drawingentry.tcl

    r3987 r4176  
    155155        set _name2path($name) $path
    156156        if {$path eq ""} {
    157             puts stderr "no path defined for substituion variable \"$cpath\""
     157            puts stderr "no path defined for substitution variable \"$cpath\""
    158158            continue
    159159        }
  • trunk/lang/tcl/scripts/exec.tcl

    r3362 r4176  
    6868            }
    6969        }
     70        puts stderr $result
    7071        error $result
    7172    }
Note: See TracChangeset for help on using the changeset viewer.