Navigation Menu

Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 3, 2016
1 parent 5fe19c5 commit d8dbc92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/db2/qgsdb2dataitems.cpp
Expand Up @@ -475,7 +475,7 @@ QgsDb2LayerItem::QgsDb2LayerItem( QgsDataItem* parent, QString name, QString pat
: QgsLayerItem( parent, name, path, QString(), layerType, PROVIDER_KEY )
, mLayerProperty( layerProperty )
{
QgsDebugMsg( "new db2 layer created : " + layerType );
QgsDebugMsg( QString( "new db2 layer created : %1" ).arg( layerType ) );
mUri = createUri();
setState( Populated );
}
Expand Down Expand Up @@ -603,4 +603,4 @@ QgsDb2LayerItem* QgsDb2SchemaItem::addLayer( QgsDb2LayerProperty layerProperty,
addChild( layerItem );

return layerItem;
}
}

0 comments on commit d8dbc92

Please sign in to comment.