Skip to content

Commit

Permalink
Fix for ticket #911. Changed field separator from , to tab as linestring
Browse files Browse the repository at this point in the history
and polygon WKT has comma in it.


git-svn-id: http://svn.osgeo.org/qgis/trunk@8990 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gjm committed Aug 5, 2008
1 parent 1b378f6 commit 892ab89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsclipboard.cpp
Expand Up @@ -62,7 +62,7 @@ void QgsClipboard::replaceWithCopyOf( const QgsFieldMap& fields, QgsFeatureList&
{
textFields += fit->name();
}
textLines += textFields.join(",");
textLines += textFields.join("\t");
textFields.clear();


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

textLines += textFields.join(",");
textLines += textFields.join("\t");
textFields.clear();
}

Expand Down

0 comments on commit 892ab89

Please sign in to comment.