Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More tweaks |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0d45034598a7eddc08862082f647029e |
User & Date: | kevin 2017-06-21 11:58:49 |
Context
2017-06-22
| ||
03:32 | Update help docs check-in: cd98bc04a2 user: kevin tags: trunk | |
2017-06-21
| ||
11:58 | More tweaks check-in: 0d45034598 user: kevin tags: trunk | |
11:52 | More shakeout of bugs check-in: dc487fb9db user: kevin tags: trunk | |
Changes
Changes to stringscan.rb.
︙ | ︙ | |||
272 273 274 275 276 277 278 | #user help def showHelp Tk.tk_call('machelp::userhelp') end | | | | | 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | #user help def showHelp Tk.tk_call('machelp::userhelp') end #here we initialize our app class def initialize $dirname = "" $searchterm = "" $appname = 'Stringscan' $appversion = '1.0' Tk.tk_call('machelp::setAppName', $appname, $appversion) Tk.tk_call('softwareupdate::setAppName', $appname) Tk.tk_call('softwareupdate::setVersion', $appname, $appversion) bgerror = Tk.install_cmd(proc{ |*args| puts args }) Tk.ip_eval("proc bgerror {args} {#{bgerror} $args}") |
︙ | ︙ |