Happy clang

This commit is contained in:
Viktar Lukashonak
2023-03-02 16:57:07 +03:00
parent 39bc54e3ad
commit 61a6c00c02
42 changed files with 96 additions and 95 deletions

View File

@ -12,14 +12,14 @@ namespace waybar::modules::hyprland {
class Window : public waybar::ALabel, public EventHandler {
public:
Window(const std::string&, const waybar::Bar&, const Json::Value&);
~Window();
virtual ~Window();
auto update() -> void;
auto update() -> void override;
private:
int getActiveWorkspaceID(std::string);
std::string getLastWindowTitle(int);
void onEvent(const std::string&);
void onEvent(const std::string&) override;
bool separate_outputs;
std::mutex mutex_;