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

Andreas Hartmetz <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #22 from Andreas Hartmetz <[email protected]> ---
This looks like some Qt bug with appending a string to a COW'd copy of itself.
In the meantime, shall we try a workaround?
    QString descr;
    if (service.isEmpty()) {
        descr = key;
    } else if (key.isEmpty()) {
        descr = service;
    } else {
        descr = QLatin1StringView("%1@%2").arg(key, service);
    }

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

Reply via email to