Skip to content

Commit

Permalink
Fix case in data item provider keys
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Mar 10, 2020
1 parent b42bddd commit 2e992c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/geonode/qgsgeonodedataitems.cpp
Expand Up @@ -66,7 +66,7 @@ QVector<QgsDataItem *> QgsGeoNodeConnectionItem::createChildren()


QgsGeoNodeServiceItem::QgsGeoNodeServiceItem( QgsDataItem *parent, QgsGeoNodeConnection *conn, QString serviceName, QString path )
: QgsDataCollectionItem( parent, serviceName, path, QStringLiteral( "geonode" ) )
: QgsDataCollectionItem( parent, serviceName, path, QStringLiteral( "GeoNode" ) )
, mName( conn->connectionName() )
, mServiceName( serviceName )
, mConnection( conn )
Expand Down
2 changes: 1 addition & 1 deletion src/providers/spatialite/qgsspatialitedataitems.cpp
Expand Up @@ -162,7 +162,7 @@ bool QgsSLConnectionItem::equal( const QgsDataItem *other )
// ---------------------------------------------------------------------------

QgsSLRootItem::QgsSLRootItem( QgsDataItem *parent, const QString &name, const QString &path )
: QgsDataCollectionItem( parent, name, path, QStringLiteral( "spatialite" ) )
: QgsDataCollectionItem( parent, name, path, QStringLiteral( "SPATIALITE" ) )
{
mCapabilities |= Fast;
mIconName = QStringLiteral( "mIconSpatialite.svg" );
Expand Down

0 comments on commit 2e992c0

Please sign in to comment.