From 9a886baef89b2c3f97d68d5416ddb74a94d8a8b3 Mon Sep 17 00:00:00 2001 From: Stu Black Date: Fri, 5 Sep 2025 02:00:48 -0400 Subject: [PATCH] Ditch linked list pointers in Rust application struct, too. --- wmakerlib/src/application.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/wmakerlib/src/application.rs b/wmakerlib/src/application.rs index f289b857..abffe459 100644 --- a/wmakerlib/src/application.rs +++ b/wmakerlib/src/application.rs @@ -10,8 +10,6 @@ pub struct Flags { #[repr(C)] pub struct Application { - next: *mut Application, - prev: *mut Application, main_window: x11::xlib::Window, main_window_desc: *mut c_void, menu: *mut c_void,