home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
s_objnamec.tcl
< prev
next >
Wrap
Text File
|
1997-10-02
|
938b
|
34 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)s_objnamec.tcl /main/titanic/5
# Author: voyager
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)s_objnamec.tcl /main/titanic/5 2 Oct 1997 Copyright 1997 Cayenne Software Inc.
require objnamecha.tcl
rename ObjNameChangeDialog::popUp _ObjNameChangeDialog::popUp
method ObjNameChangeDialog::popUp {this} {
set obj [lindex [.main selectedObjSet] 0]
if [$obj isA DocSection] {
$this text [$obj name]
$this NameChangeDialog::popUp
} else {
_ObjNameChangeDialog::popUp $this
}
}
method ObjNameChangeDialog::changeNameExtra {this obj name} {
if [$obj isA DocSection] {
require_module_file "docgenerat.tcl" docwriter
DocGenerator::setLongName $obj $name
}
}