View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0017486 | Scribus | Build System | public | 2025-04-02 19:06 | 2025-04-02 22:36 |
Reporter | nitramr | Assigned To | jghali | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | Desktop PC | OS | Ubuntu | OS Version | 24.10 64-bit |
Product Version | 1.7.1.svn | ||||
Target Version | 1.7 milestone | Fixed in Version | 1.7.1.svn | ||
Summary | 0017486: Compiler error when building with Qt 6.9.0 | ||||
Description | QString::arg(Args &&... args) was changed in Qt 6.9.0 and Scribus could not compile. See https://doc.qt.io/qt-6/qstring.html#arg | ||||
Tags | No tags attached. | ||||
Patch | Yes | ||||
|
buildfix_2025-04-02_01.patch (452 bytes)
Index: scribus/util_text.cpp =================================================================== --- scribus/util_text.cpp (Revision 26822) +++ scribus/util_text.cpp (Arbeitskopie) @@ -99,8 +99,8 @@ { QString out; - for (auto c : text) - out += QString("U+%1,").arg(c.unicode(), 4, 16, QChar('0')).toUpper(); + for (auto c : text.toUcs4()) + out += QString("U+%1,").arg(c, 4, 16, QChar('0')).toUpper(); return out.mid(0, out.length() -1); |
|
This patch is not correct, c.unicode() returns a char16_t, so text.toUcs4() cannot be correct. |
|
The proper approach here is probably to static_cast c.unicode() to a ushort or a uint in order to select proper QString::arg() overload. In this case, we do not want to use QString::arg(Args &&... args) but rather QString::arg(uint a, int fieldWidth = 0, int base = 10, QChar fillChar = u' '). |
|
Using a static_cast was indeed the solution. |
Date Modified | Username | Field | Change |
---|---|---|---|
2025-04-02 19:06 | nitramr | New Issue | |
2025-04-02 19:06 | nitramr | Status | new => assigned |
2025-04-02 19:06 | nitramr | Assigned To | => nitramr |
2025-04-02 19:06 | nitramr | File Added: buildfix_2025-04-02_01.patch | |
2025-04-02 22:01 | jghali | Note Added: 0052384 | |
2025-04-02 22:07 | jghali | Note Added: 0052385 | |
2025-04-02 22:07 | jghali | Note Edited: 0052385 | |
2025-04-02 22:27 | jghali | Assigned To | nitramr => jghali |
2025-04-02 22:27 | jghali | Status | assigned => resolved |
2025-04-02 22:27 | jghali | Resolution | open => fixed |
2025-04-02 22:27 | jghali | Fixed in Version | => 1.7.1.svn |
2025-04-02 22:27 | jghali | Note Added: 0052386 | |
2025-04-02 22:36 | jghali | Summary | Compiler error for Qt 6.9.0 => Compiler error when building with Qt 6.9.0 |