View Issue Details

IDProjectCategoryView StatusLast Update
0017486ScribusBuild Systempublic2025-04-02 22:36
Reporternitramr Assigned Tojghali  
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
PlatformDesktop PCOSUbuntuOS Version24.10 64-bit
Product Version1.7.1.svn 
Target Version1.7 milestoneFixed in Version1.7.1.svn 
Summary0017486: Compiler error when building with Qt 6.9.0
DescriptionQString::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
TagsNo tags attached.
PatchYes

Activities

nitramr

2025-04-02 19:06

developer  

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);
 

jghali

2025-04-02 22:01

administrator   ~0052384

This patch is not correct, c.unicode() returns a char16_t, so text.toUcs4() cannot be correct.

jghali

2025-04-02 22:07

administrator   ~0052385

Last edited: 2025-04-02 22:07

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' ').

jghali

2025-04-02 22:27

administrator   ~0052386

Using a static_cast was indeed the solution.

Issue History

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