By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1525
Collapse All | Expand All

(-)tqt3/src/widgets/qtextedit.cpp.orig (-2 / +12 lines)
Lines 5774-5780 Link Here
5774
void TQTextEdit::zoomIn( int range )
5774
void TQTextEdit::zoomIn( int range )
5775
{
5775
{
5776
    TQFont f( TQScrollView::font() );
5776
    TQFont f( TQScrollView::font() );
5777
    f.setPointSize( TQFontInfo(f).pointSize() + range );
5777
    TQFontInfo fi(f);
5778
    if (fi.pointSize() <= 0) {
5779
       f.setPixelSize( fi.pixelSize() + range );
5780
    } else {
5781
       f.setPointSize( fi.pointSize() + range );
5782
    }
5778
    setFont( f );
5783
    setFont( f );
5779
}
5784
}
5780
5785
Lines 5789-5795 Link Here
5789
void TQTextEdit::zoomOut( int range )
5794
void TQTextEdit::zoomOut( int range )
5790
{
5795
{
5791
    TQFont f( TQScrollView::font() );
5796
    TQFont f( TQScrollView::font() );
5792
    f.setPointSize( TQMAX( 1, TQFontInfo(f).pointSize() - range ) );
5797
    TQFontInfo fi(f);
5798
    if (fi.pointSize() <= 0) {
5799
       f.setPixelSize( TQMAX( 1, fi.pixelSize() - range ) );
5800
    } else {
5801
       f.setPointSize( TQMAX( 1, fi.pointSize() - range ) );
5802
    }
5793
    setFont( f );
5803
    setFont( f );
5794
}
5804
}
5795
5805

Return to bug 1525