Changeset 20586 for S60/trunk/WebCore

Show
Ignore:
Timestamp:
03/29/07 13:18:28 (22 months ago)
Author:
yongjzha
Message:

2007-03-28 bujtas <zbujtas@gmail.com>

Reviewed by Yongjun.
DESC: RVCT complier is not handling bitfields properly
http://bugs.webkit.org/show_bug.cgi?id=13217

  • khtml/rendering/render_table.h:
Location:
S60/trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r20538 r20586  
     1bujtas  <zbujtas@gmail.com> 
     2 
     3        Reviewed by Yongjun. 
     4        DESC: RVCT complier is not handling bitfields properly  
     5        http://bugs.webkit.org/show_bug.cgi?id=13217 
     6 
     7 
     8        * khtml/rendering/render_table.h: 
     9 
    110yadavall, reviewed by <zbujtas@gmail.com> 
    211 DESC: Rich File Upload implementation 
  • S60/trunk/WebCore/khtml/rendering/render_table.h

    r19586 r20586  
    193193 
    194194    CollapsedBorderValue* m_currentBorder; 
     195    short hspacing; 
     196    short vspacing; 
    195197     
    196198    Frame frame                 : 4; 
     
    201203    uint needSectionRecalc  : 1; 
    202204     
    203     short hspacing; 
    204     short vspacing; 
    205205}; 
    206206 
     
    407407    int rSpan; 
    408408    int cSpan; 
    409     int _topExtra : 31; 
    410     bool nWrap : 1; 
    411     int _bottomExtra : 31; 
    412     bool m_widthChanged : 1; 
    413      
    414409    int m_percentageHeight; 
     410    int _topExtra; 
     411    int _bottomExtra; 
     412    bool nWrap; 
     413    bool m_widthChanged; 
     414     
    415415}; 
    416416