* @brief Lua C closure that posts a Warning-level notification. */
| 519 | * @brief Lua C closure that posts a Warning-level notification. |
| 520 | */ |
| 521 | static int luaNotifyWarning(lua_State* L) |
| 522 | { |
| 523 | QString channel; |
| 524 | QString title; |
| 525 | QString subtitle; |
| 526 | resolveLuaArgs(L, 1, channel, title, subtitle); |
| 527 | |
| 528 | DataModel::NotificationCenter::instance().postWarning(channel, title, subtitle); |
| 529 | return 0; |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * @brief Lua C closure that posts a Critical-level notification. |
nothing calls this directly
no test coverage detected