aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/desktop
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-09-23 17:59:35 +0100
committerVaxry <[email protected]>2024-09-24 00:47:34 +0100
commitf79497087bdea3ea2706606362ba99cfe7a956a0 (patch)
treeff355fbf0041034506ed793c9e5a87a3664697d3 /src/desktop
parent508bde1f61b1264c9621b937657088f09f318ce0 (diff)
downloadHyprland-f79497087bdea3ea2706606362ba99cfe7a956a0.tar.gz
Hyprland-f79497087bdea3ea2706606362ba99cfe7a956a0.zip
internal: nuke wlsignal and related
old semi-wrappers for wl_signal, they are no longer used
Diffstat (limited to 'src/desktop')
-rw-r--r--src/desktop/Subsurface.cpp8
-rw-r--r--src/desktop/Subsurface.hpp4
2 files changed, 1 insertions, 11 deletions
diff --git a/src/desktop/Subsurface.cpp b/src/desktop/Subsurface.cpp
index 64dd7cf5..893411bd 100644
--- a/src/desktop/Subsurface.cpp
+++ b/src/desktop/Subsurface.cpp
@@ -30,13 +30,7 @@ CSubsurface::CSubsurface(SP<CWLSubsurfaceResource> pSubsurface, CPopup* pOwner)
}
CSubsurface::~CSubsurface() {
- hyprListener_newSubsurface.removeCallback();
-
- if (!m_pSubsurface)
- return;
-
- hyprListener_commitSubsurface.removeCallback();
- hyprListener_destroySubsurface.removeCallback();
+ ;
}
void CSubsurface::initSignals() {
diff --git a/src/desktop/Subsurface.hpp b/src/desktop/Subsurface.hpp
index 101f4f19..7829c489 100644
--- a/src/desktop/Subsurface.hpp
+++ b/src/desktop/Subsurface.hpp
@@ -35,10 +35,6 @@ class CSubsurface {
void recheckDamageForSubsurfaces();
private:
- DYNLISTENER(destroySubsurface);
- DYNLISTENER(commitSubsurface);
- DYNLISTENER(newSubsurface);
-
struct {
CHyprSignalListener destroySubsurface;
CHyprSignalListener commitSubsurface;