We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f3186 commit 6bbf401Copy full SHA for 6bbf401
src/ImportCsvDialog.cpp
@@ -729,7 +729,7 @@ QChar ImportCsvDialog::currentQuoteChar() const
729
else if(ui->comboQuote->currentText().length())
730
value = ui->comboQuote->currentText();
731
732
- return value.size() ? value.front() : QChar();
+ return value.size() ? value.at(0) : QChar();
733
}
734
735
void ImportCsvDialog::setSeparatorChar(QChar c)
@@ -758,7 +758,7 @@ QChar ImportCsvDialog::currentSeparatorChar() const
758
else
759
value = ui->comboSeparator->currentText() == tr("Tab") ? "\t" : ui->comboSeparator->currentText();
760
761
762
763
764
void ImportCsvDialog::setEncoding(const QString& sEnc)
0 commit comments