Reinhold Gschweicher a29e30c187 Notifications: replace newlines in label-copy because of const char* title
The variable `title` is defined as `const char*`, which means, that
`strchr()` returns a `const char*` as well according to
https://www.cplusplus.com/reference/cstring/strchr/

But in the same line the return value is assigned to a non-const
`char*`, which shouldn't be allowed (error with `-pedantic`).

Because the `lv_label` creates an internal copy of the title sting, just
modify that one instead and replace newline in the copied string.
2022-03-03 21:08:45 +01:00
..
2021-08-18 15:23:30 +03:00
2021-07-07 15:47:47 +03:00
2020-11-16 01:35:45 +01:00
2021-09-16 16:12:20 -04:00
2021-12-09 21:14:16 +01:00
2021-11-15 22:02:49 +01:00