Fix unused argument warning

This commit is contained in:
patrick96 2020-05-30 18:56:59 +02:00 committed by Patrick Ziegler
parent a30ac5f4a3
commit af5af1e497

View File

@ -53,7 +53,7 @@ namespace modules {
/**
* Handle input event
*/
bool systray_module::input(string&& action, string&& data) {
bool systray_module::input(string&& action, string&&) {
if (action.find(EVENT_TOGGLE) != 0) {
return false;
}