Changeset 9383 in ntrip for trunk/BNC/qwt/qwt_plot_glcanvas.cpp


Ignore:
Timestamp:
Mar 19, 2021, 9:15:03 AM (3 years ago)
Author:
stoecker
Message:

update to qwt verion 6.1.1 to fix build with newer Qt5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/qwt/qwt_plot_glcanvas.cpp

    r8127 r9383  
    2525    for ( ; w->parentWidget() != NULL; w = w->parentWidget() )
    2626    {
    27         if ( w->autoFillBackground() || 
     27        if ( w->autoFillBackground() ||
    2828            w->testAttribute( Qt::WA_StyledBackground ) )
    2929        {
     
    6666};
    6767
    68 /*! 
     68/*!
    6969  \brief Constructor
    7070
     
    9494  Set the frame style
    9595
    96   \param style The bitwise OR between a shape and a shadow. 
    97  
    98   \sa frameStyle(), QFrame::setFrameStyle(), 
     96  \param style The bitwise OR between a shape and a shadow.
     97
     98  \sa frameStyle(), QFrame::setFrameStyle(),
    9999      setFrameShadow(), setFrameShape()
    100100 */
     
    209209  \return Midline width of the frame
    210210  \sa setMidLineWidth(), lineWidth()
    211  */ 
     211 */
    212212int QwtPlotGLCanvas::midLineWidth() const
    213213{
     
    279279
    280280  \sa QwtPlot::drawCanvas()
    281 */ 
     281*/
    282282void QwtPlotGLCanvas::drawItems( QPainter *painter )
    283283{
     
    296296  Draw the background of the canvas
    297297  \param painter Painter
    298 */ 
     298*/
    299299void QwtPlotGLCanvas::drawBackground( QPainter *painter )
    300300{
     
    316316        w->style()->drawPrimitive( QStyle::PE_Widget, &opt, painter, w);
    317317    }
    318     else 
     318    else
    319319    {
    320320        painter->fillRect( fillRect,
     
    337337    if ( frameShadow() == QwtPlotGLCanvas::Plain )
    338338    {
    339         qDrawPlainRect( painter, frameRect(), 
     339        qDrawPlainRect( painter, frameRect(),
    340340            palette().shadow().color(), lineWidth() );
    341341    }
     
    349349        else
    350350        {
    351             qDrawShadePanel( painter, frameRect(), palette(), 
     351            qDrawShadePanel( painter, frameRect(), palette(),
    352352                frameShadow() == Sunken, lineWidth() );
    353353        }
Note: See TracChangeset for help on using the changeset viewer.