From c6a963cd43cadff083bfdf4454cdef2d8ddd2070 Mon Sep 17 00:00:00 2001 From: tcmal Date: Wed, 5 Jun 2024 20:54:29 +0100 Subject: some cleanup and lints --- src/focus.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/focus.rs') diff --git a/src/focus.rs b/src/focus.rs index 5fec53f..ea4f021 100644 --- a/src/focus.rs +++ b/src/focus.rs @@ -1,19 +1,19 @@ -use xcb::x::{self, EnterNotifyEvent, FocusInEvent, MotionNotifyEvent}; +use xcb::x::{EnterNotifyEvent, FocusInEvent, MotionNotifyEvent}; use crate::{error::*, WM}; impl WM<'_> { - pub(crate) fn handle_enter_notify(&self, e: EnterNotifyEvent) -> Result<()> { + pub(crate) fn handle_enter_notify(&self, _e: EnterNotifyEvent) -> Result<()> { // todo!() Ok(()) } - pub(crate) fn handle_focus_in(&self, e: FocusInEvent) -> Result<()> { + pub(crate) fn handle_focus_in(&self, _e: FocusInEvent) -> Result<()> { // todo!() Ok(()) } - pub(crate) fn handle_motion_notify(&self, e: MotionNotifyEvent) -> Result<()> { + pub(crate) fn handle_motion_notify(&self, _e: MotionNotifyEvent) -> Result<()> { // todo!() Ok(()) } -- cgit v1.2.3