Author Topic: CC NONPCH issue/patch for wxWidgets 3.3  (Read 931 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7779
    • My Best Post
CC NONPCH issue/patch for wxWidgets 3.3
« on: April 24, 2025, 05:07:34 pm »
Code
Subject: codecompletion: Add include of "wx/xrc/xmlres.h" for nonPCH builds

---
 src/plugins/codecompletion/parsemanager.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/plugins/codecompletion/parsemanager.cpp b/src/plugins/codecompletion/parsemanager.cpp
index 281fb5142..21d3e7b7e 100644
--- a/src/plugins/codecompletion/parsemanager.cpp
+++ b/src/plugins/codecompletion/parsemanager.cpp
@@ -16,6 +16,7 @@
     #include <wx/log.h> // for wxSafeShowMessage()
     #include <wx/regex.h>
     #include <wx/wfstream.h>
+    #include <wx/xrc/xmlres.h>
 
     #include <cbauibook.h>
     #include <cbeditor.h>
--
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1721
Re: CC NONPCH issue/patch for wxWidgets 3.3
« Reply #1 on: April 25, 2025, 04:37:54 pm »
Applied in r13656, thank you.