mirror of
https://github.com/hasherezade/bearparser
synced 2026-06-08 14:32:38 +00:00
[BUGFIX] In ImportBaseDirWrapper: fixed printing ordinal value
This commit is contained in:
@@ -172,7 +172,7 @@ QString ImportBaseFuncWrapper::getShortName()
|
||||
uint64_t val = getOrdinal();
|
||||
QString out;
|
||||
#if QT_VERSION >= 0x050000
|
||||
out.asprintf("<ord: %llX>", static_cast<unsigned long long>(val));
|
||||
out = QString::asprintf("<ord: %llX>", static_cast<unsigned long long>(val));
|
||||
#else
|
||||
out.sprintf("<ord: %llX>", static_cast<unsigned long long>(val));
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user