Show
Ignore:
Timestamp:
08/19/09 16:54:24 (15 years ago)
Author:
vbarta
Message:

using own error macros (basically copied from IT++, but never aborting)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/user_info.h

    r544 r565  
    321321 
    322322                root *typeless_instance = related_UI.new_instance(); 
    323                 it_assert_debug ( typeless_instance, "UI::new_instance failed" ); 
     323                bdm_assert_debug ( typeless_instance, "UI::new_instance failed" ); 
    324324 
    325325                instance = dynamic_cast<T*> ( typeless_instance ); 
     
    351351                T *tmp_inst = 0; 
    352352                from_setting ( tmp_inst, element ); 
    353                 it_assert_debug ( tmp_inst, "UI::from_setting failed" ); 
     353                bdm_assert_debug ( tmp_inst, "UI::from_setting failed" ); 
    354354                instance = tmp_inst; 
    355355        }