* @brief Lua C closure that emits a companion "resolved" Info event. */
| 547 | * @brief Lua C closure that emits a companion "resolved" Info event. |
| 548 | */ |
| 549 | static int luaNotifyClear(lua_State* L) |
| 550 | { |
| 551 | QString channel; |
| 552 | QString title; |
| 553 | QString subtitle; |
| 554 | resolveLuaArgs(L, 1, channel, title, subtitle); |
| 555 | |
| 556 | DataModel::NotificationCenter::instance().resolve(channel, title, subtitle); |
| 557 | return 0; |
| 558 | } |
| 559 | |
| 560 | /** |
| 561 | * @brief Lua C closure used as the stub when Pro tier is not active. |
nothing calls this directly
no test coverage detected