[QGIS Commit] r15454 - trunk/qgis/src/app
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Sat Mar 12 14:39:29 EST 2011
Author: jef
Date: 2011-03-12 11:39:29 -0800 (Sat, 12 Mar 2011)
New Revision: 15454
Modified:
trunk/qgis/src/app/qgsmaptoolsplitfeatures.cpp
Log:
"fix" #3593
Modified: trunk/qgis/src/app/qgsmaptoolsplitfeatures.cpp
===================================================================
--- trunk/qgis/src/app/qgsmaptoolsplitfeatures.cpp 2011-03-12 18:58:43 UTC (rev 15453)
+++ trunk/qgis/src/app/qgsmaptoolsplitfeatures.cpp 2011-03-12 19:39:29 UTC (rev 15454)
@@ -82,6 +82,10 @@
{
QMessageBox::warning( 0, tr( "No feature split done" ), tr( "If there are selected features, the split tool only applies to the selected ones. If you like to split all features under the split line, clear the selection" ) );
}
+ else if ( returnCode == 3 )
+ {
+ QMessageBox::warning( 0, tr( "No feature split done" ), tr( "Cut edges detected. Make sure the line splits features into multiple parts." ) );
+ }
else if ( returnCode != 0 )
{
//several intersections but only one split (most likely line)
More information about the QGIS-commit
mailing list