diff options
author | vaxerski <[email protected]> | 2023-01-24 19:31:16 +0000 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-01-24 19:31:16 +0000 |
commit | e273717a27008e7bd6378bc8abe59b0dca3d9fef (patch) | |
tree | 92dee22085157703e4d847d6531542b5b5bdd572 | |
parent | a2ae37396fd92482534579a5344c0a0594026a33 (diff) | |
download | Hyprland-e273717a27008e7bd6378bc8abe59b0dca3d9fef.tar.gz Hyprland-e273717a27008e7bd6378bc8abe59b0dca3d9fef.zip |
fix typo
-rw-r--r-- | src/Window.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.hpp b/src/Window.hpp index 64cde495..d2ba09c0 100644 --- a/src/Window.hpp +++ b/src/Window.hpp @@ -22,7 +22,7 @@ class CWindowOverridableVar { value = val; } - cCWindowOverridableVar<T> operator=(CWindowOverridableVar<T> other) { + CWindowOverridableVar<T> operator=(CWindowOverridableVar<T> other) { if (locked) return *this; |