Skip to content

Commit 892ab89

Browse files
author
gjm
committed
Fix for ticket #911. Changed field separator from , to tab as linestring
and polygon WKT has comma in it. git-svn-id: http://svn.osgeo.org/qgis/trunk@8990 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 1b378f6 commit 892ab89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/qgsclipboard.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void QgsClipboard::replaceWithCopyOf( const QgsFieldMap& fields, QgsFeatureList&
6262
{
6363
textFields += fit->name();
6464
}
65-
textLines += textFields.join(",");
65+
textLines += textFields.join("\t");
6666
textFields.clear();
6767

6868

@@ -92,7 +92,7 @@ void QgsClipboard::replaceWithCopyOf( const QgsFieldMap& fields, QgsFeatureList&
9292
textFields += it2->toString();
9393
}
9494

95-
textLines += textFields.join(",");
95+
textLines += textFields.join("\t");
9696
textFields.clear();
9797
}
9898

0 commit comments

Comments
 (0)