From ad7df3ed69f4608017b9ab0578eed70db383d72d Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Mon, 4 Nov 2024 10:03:34 +0000 Subject: [PATCH] Removes extra qualification in function signature This fixes the following compiler error with gcc. laf/os/win/dnd.h:59:15: error: extra qualification 'os::DragTargetAdapter::' on member 'newDragEven' [-fpermissive] --- os/win/dnd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/win/dnd.h b/os/win/dnd.h index f5859aae2..680b3f956 100644 --- a/os/win/dnd.h +++ b/os/win/dnd.h @@ -56,7 +56,7 @@ namespace os { DWORD* pdwEffect) override; private: - DragEvent DragTargetAdapter::newDragEvent(POINTL* pt, DWORD* pdwEffect); + DragEvent newDragEvent(POINTL* pt, DWORD* pdwEffect); ULONG m_ref = 0; Window* m_window = nullptr;