Show
Ignore:
Timestamp:
08/05/09 14:40:03 (15 years ago)
Author:
mido
Message:

panove, vite, jak jsem peclivej na upravu kodu.. snad se vam bude libit:) konfigurace je v souboru /system/astylerc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/egiw_harness.cpp

    r475 r477  
    77namespace bdm { 
    88 
    9 void egiw_harness::from_setting(const Setting &set) { 
    10     epdf_harness::from_setting(set);                             
    11     UI::get(lognc, set, "lognc", UI::compulsory); 
     9void egiw_harness::from_setting ( const Setting &set ) { 
     10        epdf_harness::from_setting ( set ); 
     11        UI::get ( lognc, set, "lognc", UI::compulsory ); 
    1212} 
    1313 
    14 void egiw_harness::test(const char *config_name, int idx) 
    15 { 
    16     epdf_harness::test(config_name, idx); 
     14void egiw_harness::test ( const char *config_name, int idx ) { 
     15        epdf_harness::test ( config_name, idx ); 
    1716 
    18     CurrentContext cc(config_name, idx); 
     17        CurrentContext cc ( config_name, idx ); 
    1918 
    20     egiw *wide = dynamic_cast<egiw *>(get_epdf()); 
    21     CHECK(wide); 
     19        egiw *wide = dynamic_cast<egiw *> ( get_epdf() ); 
     20        CHECK ( wide ); 
    2221 
    23     if (wide) { 
    24         CHECK_CLOSE_EX(lognc, wide->lognc(), get_tolerance()); 
    25     } 
     22        if ( wide ) { 
     23                CHECK_CLOSE_EX ( lognc, wide->lognc(), get_tolerance() ); 
     24        } 
    2625} 
    2726