Show
Ignore:
Timestamp:
21/05/10 19:44:17 (2 years ago)
Author:
westram
Message:
  • AW_root
    • ctor initializes AWAR subsystem
    • made more clear that AW_root is a singleton
    • call dtor atexit; unlink AWARs from prop-DB and free memory (AW_window instances and releated mem still remain)
    • close properties DB
    • renamed some functions
  • AW_awar
    • added dtor
  • added AWT_create_root (necessary to add properties DB to DB-browser)
  • removed AWT_open_properties (done inside AW_root-ctor now)
  • EDIT properties
    • detect existing properties before constructing AW_root
  • removed AW_config_struct
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/SECEDIT/SEC_main.cxx

    r6422 r6666  
    704704} 
    705705 
    706 static void SEC_exit(GBDATA *gb_main, void *cl_sec_root) { 
     706#if defined(DEVEL_RALF) 
     707#warning use popdown callback for SEC_exit and valgrind open/close/open secedit  
     708#endif // DEVEL_RALF 
     709 
     710static void SEC_exit(GBDATA *, void *cl_sec_root) { 
    707711    SEC_root *sec_root = static_cast<SEC_root*>(cl_sec_root); 
    708712 
    709713    delete sec_root; 
     714    sec_root = NULL; 
    710715} 
    711716