Changeset 7991 in ntrip
- Timestamp:
- Jul 28, 2016, 10:32:40 AM (8 years ago)
- Location:
- branches/BNC_2.12/qwtpolar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/qwtpolar/qwt_polar_curve.cpp
r4272 r7991 434 434 if ( !clipRect.isEmpty() ) 435 435 { 436 double off = qCeil( qMax( 1.0, painter->pen().widthF() ) );436 double off = qCeil( qMax(qreal(1.0), painter->pen().widthF() ) ); 437 437 clipRect = clipRect.toRect().adjusted( -off, -off, off, off ); 438 438 polyline = QwtClipper::clipPolygonF( clipRect, polyline ); -
branches/BNC_2.12/qwtpolar/qwt_polar_layout.cpp
r4272 r7991 279 279 // half of the available space. 280 280 281 dim = qMin( hint.width(), rect.width() * d_data->legendRatio);281 dim = qMin( hint.width(), qreal(rect.width() * d_data->legendRatio) ); 282 282 283 283 if ( !( options & IgnoreScrollbars ) ) … … 294 294 else 295 295 { 296 dim = qMin( hint. height(), rect.height() * d_data->legendRatio);296 dim = qMin( hint.width(), qreal(rect.width() * d_data->legendRatio) ); 297 297 dim = qMax( dim, d_data->layoutData.legend.hScrollBarHeight ); 298 298 }
Note:
See TracChangeset
for help on using the changeset viewer.