Skip to content

Commit 5bca317

Browse files
committed
Fix group wms dialog
1 parent 7b36737 commit 5bca317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9904,7 +9904,7 @@ void QgisApp::legendGroupSetWmsData()
99049904
QgsGroupWmsDataDialog *dlg = new QgsGroupWmsDataDialog( this );
99059905
dlg->setGroupShortName( currentGroup->customProperty( QStringLiteral( "wmsShortName" ) ).toString() );
99069906
dlg->setGroupTitle( currentGroup->customProperty( QStringLiteral( "wmsTitle" ) ).toString() );
9907-
dlg->setGroupTitle( currentGroup->customProperty( QStringLiteral( "wmsAbstract" ) ).toString() );
9907+
dlg->setGroupAbstract( currentGroup->customProperty( QStringLiteral( "wmsAbstract" ) ).toString() );
99089908
if ( dlg->exec() )
99099909
{
99109910
currentGroup->setCustomProperty( QStringLiteral( "wmsShortName" ), dlg->groupShortName() );

0 commit comments

Comments
 (0)