Merge pull request #3377 from fglinka/master
Fix build error on Ubuntu 22.04
This commit is contained in:
commit
3262b375c9
|
@ -10,6 +10,8 @@ namespace waybar::modules {
|
||||||
struct Profile {
|
struct Profile {
|
||||||
std::string name;
|
std::string name;
|
||||||
std::string driver;
|
std::string driver;
|
||||||
|
|
||||||
|
Profile(std::string n, std::string d) : name(std::move(n)), driver(std::move(d)) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
class PowerProfilesDaemon : public ALabel {
|
class PowerProfilesDaemon : public ALabel {
|
||||||
|
|
Loading…
Reference in New Issue