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