mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
reduce debugging noise in attribute table (fixes #9315)
This commit is contained in:
parent
46a6224c2a
commit
ccde424dc1
@ -611,7 +611,7 @@ bool QgsEllipseSymbolLayerV2::writeDxf( QgsDxfExport& e, double mmMapUnitScaleFa
|
||||
e.writePolyline( line1, layerName, "CONTINUOUS", colorIndex, outlineWidth, false );
|
||||
QgsPolyline line2( 2 );
|
||||
QPointF pt3( t.map( QPointF( 0, halfHeight ) ) );
|
||||
QPointF pt4( t.map( QPointF( 0, -halfHeight ) ) );
|
||||
// QPointF pt4( t.map( QPointF( 0, -halfHeight ) ) );
|
||||
line2[0] = QgsPoint( pt3.x(), pt3.y() );
|
||||
line2[1] = QgsPoint( pt3.x(), pt3.y() );
|
||||
e.writePolyline( line2, layerName, "CONTINUOUS", colorIndex, outlineWidth, false );
|
||||
|
@ -188,7 +188,7 @@ void QgsAttributeTableModel::layerDeleted()
|
||||
|
||||
void QgsAttributeTableModel::attributeValueChanged( QgsFeatureId fid, int idx, const QVariant &value )
|
||||
{
|
||||
QgsDebugMsg( QString( "(%4) fid: %1, idx: %2, value: %3" ).arg( fid ).arg( idx ).arg( value.toString() ).arg( mFeatureRequest.filterType() ) );
|
||||
QgsDebugMsgLevel( QString( "(%4) fid: %1, idx: %2, value: %3" ).arg( fid ).arg( idx ).arg( value.toString() ).arg( mFeatureRequest.filterType() ), 3 );
|
||||
if ( loadFeatureAtId( fid ) )
|
||||
{
|
||||
if ( mFeatureRequest.acceptFeature( mFeat ) )
|
||||
|
@ -49,7 +49,7 @@ class TestQgsComposerPaper: public QObject
|
||||
QgsMarkerLineSymbolLayerV2* mMarkerLine;
|
||||
QgsFillSymbolV2* mFillSymbol;
|
||||
QgsFillSymbolV2* mMarkerLineSymbol;
|
||||
QgsSingleSymbolRendererV2* mSymbolRenderer;
|
||||
// QgsSingleSymbolRendererV2* mSymbolRenderer;
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user