diff options
| author | Marcus Tillmanns <[email protected]> | 2025-10-17 10:42:31 +0200 |
|---|---|---|
| committer | Marcus Tillmanns <[email protected]> | 2025-10-21 08:48:07 +0000 |
| commit | 1a44550a9112b49e768ce3d57c6129b718332bb3 (patch) | |
| tree | 762db75213dbbed08cc8764039b11368b02c299c /src/plugins/lua/luaengine.cpp | |
| parent | 18622ca4ee7be1c41ecf0d72f73ac0e733da84f8 (diff) | |
Lua: Add Gui.Object:isValid()
Change-Id: Idfff091745253e93e5199e9f099a9dd188ad3141
Reviewed-by: <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/lua/luaengine.cpp')
| -rw-r--r-- | src/plugins/lua/luaengine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/lua/luaengine.cpp b/src/plugins/lua/luaengine.cpp index 3b19fcf518c..ae931889dff 100644 --- a/src/plugins/lua/luaengine.cpp +++ b/src/plugins/lua/luaengine.cpp @@ -175,7 +175,8 @@ std::unique_ptr<Utils::LuaState> runScript( if (!result.valid()) { sol::error err = result; - qWarning() << "Failed to run script" << name << ":" << QString::fromUtf8(err.what()); + qWarning().noquote() << "Failed to run script" << name << ":" + << QString::fromUtf8(err.what()); Core::MessageManager::writeFlashing( Tr::tr("Failed to run script %1: %2").arg(name, QString::fromUtf8(err.what()))); } |
