mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 15:35:09 -04:00
It is not obvious toUcs4 returns QVector<uint> so remove auto
This commit is contained in:
@@ -154,7 +154,7 @@ public:
|
||||
}
|
||||
|
||||
inline static int stringWidth(const QString &str) {
|
||||
auto ucs4Str = str.toUcs4();
|
||||
QVector<uint> ucs4Str = str.toUcs4();
|
||||
return stringWidth(ucs4Str.constData(), ucs4Str.length());
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user