Show
Ignore:
Timestamp:
31/05/10 15:36:42 (2 years ago)
Author:
westram
Message:
  • valgrind2grep: - ignore some leaked motif memory (wont fix that (now))
  • added aw_uninstall_xkeys() and AW_root::exit_root() to stuff some memleaks
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/WINDOW/AW_window.cxx

    r6666 r6674  
    255255 
    256256static void destroy_AW_root() { 
    257     delete AW_root::SINGLETON; 
     257    delete AW_root::SINGLETON; AW_root::SINGLETON = NULL; 
    258258} 
    259259 
     
    273273 
    274274AW_root::~AW_root() { 
     275    exit_root(); 
    275276    exit_variables(); 
    276277    aw_assert(this == AW_root::SINGLETON); 
     
    14881489    aw_install_xkeys(XtDisplay(p_r->toplevel_widget)); 
    14891490 
     1491} 
     1492 
     1493void AW_root::exit_root() { 
     1494    aw_uninstall_xkeys(); 
    14901495} 
    14911496