diff dep/animia/src/animia.cc @ 198:bc1ae1810855

dep/animia: switch from using classes to global functions the old idea was ok, but sort of hackish; this method doesn't use classes at all, and this way (especially important!) we can do wayland stuff AND x11 at the same time, which wasn't really possible without stupid workarounds in the other method
author Paper <mrpapersonic@gmail.com>
date Sun, 24 Dec 2023 02:59:42 -0500
parents 0fc126d52de4
children 031a257ee019
line wrap: on
line diff
--- a/dep/animia/src/animia.cc	Fri Dec 08 11:19:54 2023 -0500
+++ b/dep/animia/src/animia.cc	Sun Dec 24 02:59:42 2023 -0500
@@ -61,7 +61,7 @@
 		return true;
 	};
 
-	if (!internal::fd.EnumerateOpenProcesses(process_proc))
+	if (!internal::EnumerateOpenProcesses(process_proc))
 		return false;
 
 	/* Then add our cool windows.
@@ -83,7 +83,7 @@
 		return true;
 	};
 
-	if (!internal::win.EnumerateWindows(window_proc))
+	if (!internal::EnumerateWindows(window_proc))
 		return false;
 
 	return internal::ApplyStrategies(results);