Skip to content

Commit 08c5c4b

Browse files
committed
Add notes to see related algorithms in algorithm help
1 parent a55fbd8 commit 08c5c4b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/core/processing/qgsnativealgorithms.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,8 @@ QString QgsPromoteToMultipartAlgorithm::shortHelpString() const
12861286
return QObject::tr( "This algorithm takes a vector layer with singlepart geometries and generates a new one in which all geometries are "
12871287
"multipart. Input features which are already multipart features will remain unchanged.\n\n"
12881288
"This algorithm can be used to force geometries to multipart types in order to be compatibility with data providers "
1289-
"with strict singlepart/multipart compatibility checks." );
1289+
"with strict singlepart/multipart compatibility checks.\n\n"
1290+
"See the 'Collect geometries' or 'Aggregate' algorithms for alternative options." );
12901291
}
12911292

12921293
QgsPromoteToMultipartAlgorithm *QgsPromoteToMultipartAlgorithm::createInstance() const
@@ -1327,7 +1328,8 @@ QString QgsCollectAlgorithm::shortHelpString() const
13271328
"be specified to collect only geometries belonging to the same class (having the same value for the specified attributes), alternatively "
13281329
"all geometries can be collected.\n\n"
13291330
"All output geometries will be converted to multi geometries, even those with just a single part. "
1330-
"This algorithm does not dissolve overlapping geometries - they will be collected together without modifying the shape of each geometry part." );
1331+
"This algorithm does not dissolve overlapping geometries - they will be collected together without modifying the shape of each geometry part.\n\n"
1332+
"See the 'Promote to multipart' or 'Aggregate' algorithms for alternative options." );
13311333
}
13321334

13331335
QgsCollectAlgorithm *QgsCollectAlgorithm::createInstance() const

0 commit comments

Comments
 (0)