Skip to content

Commit e905650

Browse files
committed
fix imports
1 parent 290f6f5 commit e905650

File tree

1 file changed

+2
-3
lines changed
  • crates/displays/src/platform

1 file changed

+2
-3
lines changed

crates/displays/src/platform/win.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::{io, mem, str::FromStr};
1+
use std::{mem, str::FromStr};
22

33
use windows::{
44
Win32::{
@@ -42,11 +42,10 @@ use windows::{
4242
},
4343
},
4444
},
45-
core::BOOL,
45+
core::{BOOL, PCWSTR, PWSTR},
4646
};
4747

4848
use crate::bounds::{LogicalBounds, LogicalPosition, LogicalSize, PhysicalSize};
49-
use image::{ImageFormat, RgbaImage};
5049

5150
#[derive(Clone, Copy)]
5251
pub struct DisplayImpl(HMONITOR);

0 commit comments

Comments
 (0)