mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	Fix build with QT 5.5
QOverload is new in QT 5.7
This commit is contained in:
		
							parent
							
								
									c76a1b507b
								
							
						
					
					
						commit
						f5d2c7bc35
					
				@ -34,7 +34,7 @@ QgsMeshRendererMeshSettingsWidget::QgsMeshRendererMeshSettingsWidget( QWidget *p
 | 
			
		||||
  setupUi( this );
 | 
			
		||||
 | 
			
		||||
  connect( mColorWidget, &QgsColorButton::colorChanged, this, &QgsMeshRendererMeshSettingsWidget::widgetChanged );
 | 
			
		||||
  connect( mLineWidthSpinBox, QOverload<double>::of( &QgsDoubleSpinBox::valueChanged ),
 | 
			
		||||
  connect( mLineWidthSpinBox, qgis::overload<double>::of( &QgsDoubleSpinBox::valueChanged ),
 | 
			
		||||
           this, &QgsMeshRendererMeshSettingsWidget::widgetChanged );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -27,15 +27,14 @@ QgsMeshRendererVectorSettingsWidget::QgsMeshRendererVectorSettingsWidget( QWidge
 | 
			
		||||
  setupUi( this );
 | 
			
		||||
 | 
			
		||||
  connect( mColorWidget, &QgsColorButton::colorChanged, this, &QgsMeshRendererVectorSettingsWidget::widgetChanged );
 | 
			
		||||
  connect( mLineWidthSpinBox, QOverload<double>::of( &QgsDoubleSpinBox::valueChanged ),
 | 
			
		||||
  connect( mLineWidthSpinBox, qgis::overload<double>::of( &QgsDoubleSpinBox::valueChanged ),
 | 
			
		||||
           this, &QgsMeshRendererVectorSettingsWidget::widgetChanged );
 | 
			
		||||
 | 
			
		||||
  connect( mShaftLengthComboBox, QOverload<int>::of( &QComboBox::currentIndexChanged ),
 | 
			
		||||
  connect( mShaftLengthComboBox, qgis::overload<int>::of( &QComboBox::currentIndexChanged ),
 | 
			
		||||
           this, &QgsMeshRendererVectorSettingsWidget::widgetChanged );
 | 
			
		||||
 | 
			
		||||
  connect( mShaftLengthComboBox, QOverload<int>::of( &QComboBox::currentIndexChanged ),
 | 
			
		||||
  connect( mShaftLengthComboBox, qgis::overload<int>::of( &QComboBox::currentIndexChanged ),
 | 
			
		||||
           mShaftOptionsStackedWidget, &QStackedWidget::setCurrentIndex );
 | 
			
		||||
 | 
			
		||||
  QVector<QLineEdit *> widgets;
 | 
			
		||||
  widgets << mMinMagLineEdit << mMaxMagLineEdit
 | 
			
		||||
          << mHeadWidthLineEdit << mHeadLengthLineEdit
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user