Merge pull request #2230 from KLayout/bugfix/issue-2229

Fixed build problem with 64bit coordinates and without Qt
This commit is contained in:
Matthias Köfferlein 2025-11-25 22:23:48 +01:00 committed by GitHub
commit a957386291
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ template <>
TL_PUBLIC void extractor_impl (tl::Extractor &ex, __int128 &v)
{
if (! test_extractor_impl (ex, v)) {
ex.error (tl::to_string (QObject::tr ("Expected a value specification")));
ex.error (tl::to_string (tr ("Expected a value specification")));
}
}