Change summary
crates/gpui/src/platform/windows/window.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Detailed changes
@@ -901,9 +901,9 @@ impl IDropTarget_Impl for WindowsDragDropHandler_Impl {
if idata.u.hGlobal.is_invalid() {
return Ok(());
}
- let hdrop = idata.u.hGlobal.0 as *mut HDROP;
+ let hdrop = HDROP(idata.u.hGlobal.0);
let mut paths = SmallVec::<[PathBuf; 2]>::new();
- with_file_names(*hdrop, |file_name| {
+ with_file_names(hdrop, |file_name| {
if let Some(path) = PathBuf::from_str(&file_name).log_err() {
paths.push(path);
}