From 5943b67d5039b407bed75679e22c6bfcaee5ee29 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 11 Apr 2023 17:16:34 +0200 Subject: [PATCH] Don't mark wxVideoMode as being DLL-exported This is unnecessary for a class without any non-inline functions. --- include/wx/vidmode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/vidmode.h b/include/wx/vidmode.h index 550bb3b4bc..e6618af0c1 100644 --- a/include/wx/vidmode.h +++ b/include/wx/vidmode.h @@ -15,7 +15,7 @@ // wxVideoMode: a simple struct containing video mode parameters for a display // ---------------------------------------------------------------------------- -struct WXDLLIMPEXP_CORE wxVideoMode +struct wxVideoMode { wxVideoMode(int width = 0, int height = 0, int depth = 0, int freq = 0) {