Skip to content

Commit

Permalink
Qt6 Compatibility Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
docsteer committed May 1, 2024
1 parent 0f94785 commit 749e097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/csvmodelexport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bool CsvModelExporter::saveAs(const QString& filename) const
{
const QVariant field = m_model->data(m_model->index(i, j, m_rootIndex), Qt::DisplayRole);

switch (field.type())
switch (field.typeId())
{
default:
{
Expand Down

0 comments on commit 749e097

Please sign in to comment.