From 8b870a51b0683f662af88ea7ce68c7dc470b4816 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 14 Jul 2021 16:40:31 +0200 Subject: [PATCH] Remove unnecessary XDND proxy call This was left over from the original implementation, before we had this smart pointer-singleton hybrid thing. There's already a handle stored inside of `Editor`. --- src/wine-host/editor.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/wine-host/editor.cpp b/src/wine-host/editor.cpp index e08ed33a..70bb0577 100644 --- a/src/wine-host/editor.cpp +++ b/src/wine-host/editor.cpp @@ -332,11 +332,6 @@ Editor::Editor(MainContext& main_context, 0); xcb_flush(x11_connection.get()); } - - // Set up our proxy for translating Wine drag-and-drop events into XDND - // events - // TODO: We're going to need to store this somewhere to pass the events - WineXdndProxy::get_handle(); } void Editor::handle_x11_events() const noexcept {