Ignore:
Timestamp:
Nov 16, 2005, 8:36:46 PM (20 years ago)
Author:
dmik
Message:

Transferred Qt for OS/2 version 3.3.1-rc5 sources from the CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/widgets/qlabel.cpp

    r7 r8  
    280280      ( ( textformat == AutoText ) && QStyleSheet::mightBeRichText(ltext) ) );
    281281#else
    282     bool useRichText = TRUE;
     282    bool useRichText = FALSE;
    283283#endif
    284284#ifndef QT_NO_ACCEL
     
    711711
    712712        if ( x + w < cr.right() )
    713             reg = reg.unite( QRect( x + w, cr.y(),  cr.right() - x - w, cr.height() ) );
     713            reg = reg.unite( QRect( x + w, cr.y(),  cr.right() - x - w + 1, cr.height() ) );
    714714        if ( y + h < cr.bottom() )
    715             reg = reg.unite( QRect( cr.x(), y +  h, cr.width(), cr.bottom() - y - h ) );
     715            reg = reg.unite( QRect( cr.x(), y +  h, cr.width(), cr.bottom() - y - h + 1 ) );
    716716
    717717        erase( reg );
Note: See TracChangeset for help on using the changeset viewer.