* @brief Lua C closure that posts an Info-level notification. */
| 505 | * @brief Lua C closure that posts an Info-level notification. |
| 506 | */ |
| 507 | static int luaNotifyInfo(lua_State* L) |
| 508 | { |
| 509 | QString channel; |
| 510 | QString title; |
| 511 | QString subtitle; |
| 512 | resolveLuaArgs(L, 1, channel, title, subtitle); |
| 513 | |
| 514 | DataModel::NotificationCenter::instance().postInfo(channel, title, subtitle); |
| 515 | return 0; |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * @brief Lua C closure that posts a Warning-level notification. |
nothing calls this directly
no test coverage detected