Navigation Menu

Skip to content

Commit

Permalink
quuid
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Mar 26, 2021
1 parent 23fbde4 commit 0ba0ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsactionmanager.cpp
Expand Up @@ -262,7 +262,7 @@ bool QgsActionManager::readXml( const QDomNode &layer_node )
for ( int i = 0; i < defaultActionNodes.size(); ++i )
{
QDomElement defaultValueElem = defaultActionNodes.at( i ).toElement();
mDefaultActions.insert( defaultValueElem.attribute( QStringLiteral( "key" ) ), defaultValueElem.attribute( QStringLiteral( "value" ) ) );
mDefaultActions.insert( defaultValueElem.attribute( QStringLiteral( "key" ) ), QUuid( defaultValueElem.attribute( QStringLiteral( "value" ) ) ) );
}
}
return true;
Expand Down

0 comments on commit 0ba0ceb

Please sign in to comment.