Skip to content

Commit 24f1519

Browse files
committedMar 27, 2013
fix warnings
1 parent 791d71d commit 24f1519

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/core/composer/qgscomposerlegend.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,7 @@ bool QgsComposerLegend::readXML( const QDomElement& itemElem, const QDomDocument
751751
else if ( name == "subgroup" ) s = QgsComposerLegendStyle::Subgroup;
752752
else if ( name == "symbol" ) s = QgsComposerLegendStyle::Symbol;
753753
else if ( name == "symbolLabel" ) s = QgsComposerLegendStyle::SymbolLabel;
754+
else continue;
754755
setStyle( s, style );
755756
}
756757
}

‎src/plugins/topology/topolTest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ typedef ErrorList( topolTest::*testFunction )( double, QgsVectorLayer*, QgsVecto
3737
class TopologyRule
3838
{
3939
public:
40+
testFunction f;
4041
bool useSecondLayer;
4142
bool useTolerance;
4243
bool useSpatialIndex;
4344
QList<QGis::GeometryType> layer1SupportedTypes;
4445
QList<QGis::GeometryType> layer2SupportedTypes;
45-
testFunction f;
4646

4747
bool layer1AcceptsType( QGis::GeometryType type )
4848
{

0 commit comments

Comments
 (0)
Please sign in to comment.