Qt 6.11 is out! See what's new in the release
blog
How to convert QString to lua_Number?
-
QString a = "0"; /// how do I convert this /// lua_Number b = 0; /// to this? /// -
Hi,
From a quick look, since lua_Number is a double, QString::toDouble.