Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
Expand Up @@ -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() )
Expand Down

0 comments on commit af7d512

Please sign in to comment.