Skip to content

Commit ccde424

Browse files
committedJan 9, 2014
reduce debugging noise in attribute table (fixes #9315)
1 parent 46a6224 commit ccde424

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎src/core/symbology-ng/qgsellipsesymbollayerv2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ bool QgsEllipseSymbolLayerV2::writeDxf( QgsDxfExport& e, double mmMapUnitScaleFa
611611
e.writePolyline( line1, layerName, "CONTINUOUS", colorIndex, outlineWidth, false );
612612
QgsPolyline line2( 2 );
613613
QPointF pt3( t.map( QPointF( 0, halfHeight ) ) );
614-
QPointF pt4( t.map( QPointF( 0, -halfHeight ) ) );
614+
// QPointF pt4( t.map( QPointF( 0, -halfHeight ) ) );
615615
line2[0] = QgsPoint( pt3.x(), pt3.y() );
616616
line2[1] = QgsPoint( pt3.x(), pt3.y() );
617617
e.writePolyline( line2, layerName, "CONTINUOUS", colorIndex, outlineWidth, false );

‎src/gui/attributetable/qgsattributetablemodel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void QgsAttributeTableModel::layerDeleted()
188188

189189
void QgsAttributeTableModel::attributeValueChanged( QgsFeatureId fid, int idx, const QVariant &value )
190190
{
191-
QgsDebugMsg( QString( "(%4) fid: %1, idx: %2, value: %3" ).arg( fid ).arg( idx ).arg( value.toString() ).arg( mFeatureRequest.filterType() ) );
191+
QgsDebugMsgLevel( QString( "(%4) fid: %1, idx: %2, value: %3" ).arg( fid ).arg( idx ).arg( value.toString() ).arg( mFeatureRequest.filterType() ), 3 );
192192
if ( loadFeatureAtId( fid ) )
193193
{
194194
if ( mFeatureRequest.acceptFeature( mFeat ) )

‎tests/src/core/testqgscomposerpaper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class TestQgsComposerPaper: public QObject
4949
QgsMarkerLineSymbolLayerV2* mMarkerLine;
5050
QgsFillSymbolV2* mFillSymbol;
5151
QgsFillSymbolV2* mMarkerLineSymbol;
52-
QgsSingleSymbolRendererV2* mSymbolRenderer;
52+
// QgsSingleSymbolRendererV2* mSymbolRenderer;
5353

5454
};
5555

0 commit comments

Comments
 (0)