From f665642e712558f3f903657a35b95af3c84a2824 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 24 Jan 2023 12:32:41 +0100 Subject: [PATCH] Fix build --- Source/Engine/Platform/Linux/LinuxPlatform.cpp | 1 - Source/Engine/Platform/Mac/MacPlatform.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/Source/Engine/Platform/Linux/LinuxPlatform.cpp b/Source/Engine/Platform/Linux/LinuxPlatform.cpp index a6b7fdfa2..a5bd099c9 100644 --- a/Source/Engine/Platform/Linux/LinuxPlatform.cpp +++ b/Source/Engine/Platform/Linux/LinuxPlatform.cpp @@ -1658,7 +1658,6 @@ DragDropEffect LinuxWindow::DoDragDrop(const StringView& data) void LinuxClipboard::Clear() { - SCRIPTING_EXPORT("FlaxEngine.Clipboard::Internal_Clear"); SetText(StringView::Empty); } diff --git a/Source/Engine/Platform/Mac/MacPlatform.cpp b/Source/Engine/Platform/Mac/MacPlatform.cpp index ed4323263..e2d459c7e 100644 --- a/Source/Engine/Platform/Mac/MacPlatform.cpp +++ b/Source/Engine/Platform/Mac/MacPlatform.cpp @@ -110,7 +110,6 @@ Float2 MacUtils::GetScreensOrigin() void MacClipboard::Clear() { - SCRIPTING_EXPORT("FlaxEngine.Clipboard::Internal_Clear"); NSPasteboard* pasteboard = [NSPasteboard generalPasteboard]; [pasteboard clearContents]; }