Ignore:
Timestamp:
Jul 28, 2016, 10:29:27 AM (8 years ago)
Author:
stuerze
Message:

minor adaptations to allow the successful comilation of BNC on a Rasperry Pi

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/qwtpolar/qwt_polar_layout.cpp

    r4272 r7990  
    279279        // half of the available space.
    280280
    281         dim = qMin( hint.width(), rect.width() * d_data->legendRatio );
     281        dim = qMin( hint.width(), qreal(rect.width() * d_data->legendRatio) );
    282282
    283283        if ( !( options & IgnoreScrollbars ) )
     
    294294    else
    295295    {
    296         dim = qMin( hint.height(), rect.height() * d_data->legendRatio );
     296        dim = qMin( hint.width(), qreal(rect.width() * d_data->legendRatio) );
    297297        dim = qMax( dim, d_data->layoutData.legend.hScrollBarHeight );
    298298    }
Note: See TracChangeset for help on using the changeset viewer.