From a03978a2e5658383df4be1f2c58519e26251b415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Albowitz?= Date: Wed, 26 Apr 2023 10:55:57 +0200 Subject: [PATCH] corrected the declaration of m_SaveItem in RMGUI example --- About-the-IMGUI-paradigm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/About-the-IMGUI-paradigm.md b/About-the-IMGUI-paradigm.md index 365a8ff..92ae56d 100644 --- a/About-the-IMGUI-paradigm.md +++ b/About-the-IMGUI-paradigm.md @@ -38,7 +38,7 @@ Typical RMGUI: // editor.h // [...] somewhere in a class declaration -MenuItem* m_Item; +MenuItem* m_SaveItem; // editor.cpp // [...] somewhere in an init/constructor function