summaryrefslogtreecommitdiff
path: root/src/window_gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/window_gui.h')
-rw-r--r--src/window_gui.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/window_gui.h b/src/window_gui.h
index 6288aadc1..c5c37be85 100644
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -197,6 +197,13 @@ struct WindowDesc : ZeroedMemoryAllocator {
static void LoadFromConfig();
static void SaveToConfig();
+
+private:
+ /**
+ * Dummy private copy constructor to prevent compilers from
+ * copying the structure, which fails due to _window_descs.
+ */
+ WindowDesc(const WindowDesc &other);
};
/**