Skip to content
Permalink
Browse files
fix handling of TAB delimiter in delimited text plugin
  • Loading branch information
alexbruy committed Feb 15, 2013
1 parent 424cc89 commit af7d512
Showing 1 changed file with 1 addition and 1 deletion.
@@ -187,7 +187,7 @@ QStringList QgsDelimitedTextSourceSelect::selectedChars()
if ( cbxDelimSpace->isChecked() )
chars << " ";
if ( cbxDelimTab->isChecked() )
chars << "\\t";
chars << "\t";
if ( cbxDelimSemicolon->isChecked() )
chars << ";";
if ( cbxDelimComma->isChecked() )

0 comments on commit af7d512

Please sign in to comment.