Show
Ignore:
Timestamp:
08/05/09 00:01:58 (15 years ago)
Author:
mido
Message:

1) ad UserInfo?: UI::get a UI::build predelany tak, ze vraci fals / NULL v pripade neexistence pozadovaneho Settingu, pridana enumericky typ UI::SettingPresence?, predelany stavajici UI implementace, dodelana UI dokumentace
2) dokoncena konfigurace ASTYLERU, brzy bude aplikovan
3) doxygen nastaven tak, ze vytvari soubor doxy_warnings.txt

Files:
1 modified

Legend:

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

    r451 r471  
    176176        throw UIException( "only TypeList elements could be indexed by integers", element ); 
    177177 
    178     if ( element.getLength() <= index ) 
    179         throw UIException( "there is not any child with index " + index, element ); 
    180  
    181178    return element[index]; 
    182179} 
     
    186183    if ( !element.isGroup()) 
    187184        throw UIException( "only TypeGroup elements could be indexed by strings", element ); 
    188  
    189     if ( !element.exists( name ) ) 
    190         throw UIException( "there is not any child named """ + name, element ); 
    191185 
    192186    return element[name];