home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / s_ude.tcl < prev    next >
Text File  |  1997-09-23  |  1KB  |  34 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 1997 by Cayenne Software Inc.
  4. #
  5. # This software is furnished under a license and may be used only in
  6. # accordance with the terms of such license and with the inclusion of
  7. # the above copyright notice. This software or any other copies thereof
  8. # may not be provided or otherwise made available to any other person.
  9. # No title to and ownership of the software is hereby transferred.
  10. #
  11. # The information in this software is subject to change without notice
  12. # and should not be construed as a commitment by Cayenne Software Inc.
  13. #
  14. #---------------------------------------------------------------------------
  15. #
  16. #       File            : @(#)s_ude.tcl    /main/titanic/3 29 Jul 1997
  17. #       Description     : Automatic loading of props file for the editor
  18. #
  19. #---------------------------------------------------------------------------
  20. #
  21.  
  22. proc getLibCaynPropsPath {} {
  23.     set modHdlr [ModuleHandler new]
  24.     $modHdlr setCurrentContext
  25.     set spec [$modHdlr getModuleSpec "cpp-libcayn"]
  26.     set propPath ""
  27.     if {$spec != ""} {
  28.         set propPath [location [$spec path] tcl cppclprop.tcl]
  29.     }
  30.     return $propPath
  31. }
  32.  
  33. source [getLibCaynPropsPath]
  34.