04b7c50fb8c6a29b2d84579ee448d2498414d855.patch 1.1 KB

12345678910111213141516171819202122232425262728
  1. From 04b7c50fb8c6a29b2d84579ee448d2498414d855 Mon Sep 17 00:00:00 2001
  2. From: ollydbg <ollydbg@2a5c6006-c6dd-42ca-98ab-0921f2732cef>
  3. Date: Wed, 6 Oct 2021 14:29:21 +0000
  4. Subject: [PATCH] * Fix CCManager compilation with C++17(apply patch #1142,
  5. thanks Miguel Gimenez)
  6. See details in: https://sourceforge.net/p/codeblocks/tickets/1142/
  7. and forum discussion: https://forums.codeblocks.org/index.php/topic,24643.0.html
  8. git-svn-id: https://svn.code.sf.net/p/codeblocks/code/trunk@12532 2a5c6006-c6dd-42ca-98ab-0921f2732cef
  9. ---
  10. src/include/ccmanager.h | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/src/include/ccmanager.h b/src/include/ccmanager.h
  13. index 1f471001d..57318bf6f 100644
  14. --- a/src/include/ccmanager.h
  15. +++ b/src/include/ccmanager.h
  16. @@ -44,7 +44,7 @@ class wxScintillaEvent;
  17. * list or the doxygen popup, the scroll event is instead sent there (and skipped for the editor
  18. * window).
  19. */
  20. -class DLLIMPORT CCManager : public Mgr<CCManager>, wxEvtHandler
  21. +class DLLIMPORT CCManager : public Mgr<CCManager>, public wxEvtHandler
  22. {
  23. public:
  24. friend class Mgr<CCManager>;