https://bugs.kde.org/show_bug.cgi?id=373119

Elvis Stansvik <elvst...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |elvst...@gmail.com

--- Comment #4 from Elvis Stansvik <elvst...@gmail.com> ---
I'm running into this issue with our product on Ubuntu 16.04 as well (KF5
5.18.0 and Qt 5.5.1), though we're only getting the "Invalid URL:
QUrl("blahblah")" messages.

Our QFileDialog is configured and shown as follows:

    QFileDialog *dialog = new QFileDialog(this, "Select CSV File Name");
    dialog->setModal(true);
    dialog->setNameFilter("CSV Files (*.csv)");
    dialog->setDirectory(QFileInfo(outputFileEdit->text()).dir());
    dialog->setLabelText(QFileDialog::Accept, "OK");
    dialog->setAttribute(Qt::WA_DeleteOnClose);
    dialog->setFileMode(QFileDialog::AnyFile);
    dialog->setAcceptMode(QFileDialog::AcceptSave);
    dialog->selectFile(outputFileEdit->text());

    connect(dialog, &QFileDialog::fileSelected, outputFileEdit,
&QLineEdit::setText);

    dialog->show();

Since we're initially targeting Ubuntu 16.04 exclusively with this product (and
using the packaged versions of KF5 and Qt), does anyone know if there's a
workaround to quench the messages?

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to