Developer forums (C::B DEVELOPMENT STRICTLY!) > Development

C::B runtime errors when WXWIN_COMPATIBILITY_2_4=0 or disable-compat24

<< < (3/3)

stahta01:
Found cause

env_settings.xrc inside resources.zip is using class="wxCheckList" it should use class="wxCheckListBox"

Edit: I have confirmed it fixes the issue under 2.6, trying 2.8 now.
Fixed most of the problems under 2.8rc1+patches also.

Patch: [ Patch #1661 ] wxCheckListBox patch for wxWidgets 2.7 https://developer.berlios.de/patch/index.php?func=detailpatch&patch_id=1661&group_id=5358

Tim S

stahta01:
Work on 2.8 with WXWIN_COMPATIBILITY_2_4=0 is proceeding in this thread
Patches to compile and link C::B against wxWidgets 2.8.0
http://forums.codeblocks.org/index.php?topic=4495.0

Tim S

wxLearner:

--- Quote from: stahta01 on November 27, 2006, 01:38:31 pm ---env_settings.xrc inside resources.zip is using class="wxCheckList" it should use class="wxCheckListBox"

--- End quote ---
The project dependencies dialog also crashes with wx 2.8.0 due to the same kind of issue:
project_deps.xrc in manager_resources.zip (src/sdk/resources/project_deps.xrc in svn) is using "wxCheckList" instead of "wxCheckListBox".

stahta01:

--- Quote from: wxLearner on February 20, 2007, 02:23:31 pm ---
--- Quote from: stahta01 on November 27, 2006, 01:38:31 pm ---env_settings.xrc inside resources.zip is using class="wxCheckList" it should use class="wxCheckListBox"

--- End quote ---
The project dependencies dialog also crashes with wx 2.8.0 due to the same kind of issue:
project_deps.xrc in manager_resources.zip (src/sdk/resources/project_deps.xrc in svn) is using "wxCheckList" instead of "wxCheckListBox".

--- End quote ---

Patch:


--- Code: ---Index: src/sdk/resources/project_deps.xrc
===================================================================
--- src/sdk/resources/project_deps.xrc (revision 3627)
+++ src/sdk/resources/project_deps.xrc (working copy)
@@ -28,7 +28,7 @@
         <border>8</border>
       </object>
       <object class="sizeritem">
-        <object class="wxCheckList" name="lstDeps">
+        <object class="wxCheckListBox" name="lstDeps">
           <content/>
         </object>
         <option>1</option>

--- End code ---

I have tried to submit this patch to BerliOS, but I can NOT get to the page for submitting it.
Tim S

Navigation

[0] Message Index

[*] Previous page

Go to full version