Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/WINDOW/AW_device.cxx

    r5901 r6141  
    1313 
    1414void AW_clip::set_cliprect(AW_rectangle *rect, bool allow_oversize) { 
    15     clip_rect = *rect;  // coordintes : (0,0) = top-left-corner 
     15    clip_rect = *rect;  // coordinates : (0,0) = top-left-corner 
    1616    if (!allow_oversize){ 
    1717        if (clip_rect.t < common->screen.t) clip_rect.t = common->screen.t; 
     
    244244 
    245245 
    246 void AW_GC_Xm::set_fill(AW_grey_level grey_leveli) {    // <0 dont fill  0.0 white 1.0 black 
     246void AW_GC_Xm::set_fill(AW_grey_level grey_leveli) {    // <0 don't fill  0.0 white 1.0 black 
    247247    grey_level = grey_leveli; 
    248248} 
     
    752752        if (Y0+(AW_pos)(xfs->max_bounds.descent) < clip_rect.t) return 0; // draw outside screen 
    753753    }else { 
    754         if (Y0-(AW_pos)(xfs->max_bounds.ascent) < clip_rect.t) return 0; // dont cross the clip border 
     754        if (Y0-(AW_pos)(xfs->max_bounds.ascent) < clip_rect.t) return 0; // don't cross the clip border 
    755755    } 
    756756 
     
    758758        if (Y0-(AW_pos)(xfs->max_bounds.ascent) > clip_rect.b) return 0;             // draw outside screen 
    759759    }else { 
    760         if (Y0+(AW_pos)(xfs->max_bounds.descent)> clip_rect.b) return 0;             // dont cross the clip border 
     760        if (Y0+(AW_pos)(xfs->max_bounds.descent)> clip_rect.b) return 0;             // don't cross the clip border 
    761761    } 
    762762