I need to alter the header of a XRC file generated by wxCrafter. The header at present looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc">
to make it work in up to date wxWidget compilation I need this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<resource xmlns="http://www.wxwidgets.org/wxxrc" version="2.5.3.0">
in other words, I want to add a string "version="2.5.3.0"" to existing <resource> statement.
How do I do it from within wxCrafter/CodeLite? Is it possible at all to alter xrc code generation in wxCrafter?
Best, Bogdan Rozborski, ArsDigita.