Found a bug in frmIndexcheck.xrc, is it still being used? - Mailing list pgadmin-hackers

From Tim Stahlhut
Subject Found a bug in frmIndexcheck.xrc, is it still being used?
Date
Msg-id et6hqt$t8s$1@sea.gmane.org
Whole thread Raw
In response to compile problem  (Giuseppe Sacco <giuseppe@eppesuigoccas.homedns.org>)
Responses Re: Found a bug in frmIndexcheck.xrc, is it still being used?  (Dave Page <dpage@postgresql.org>)
List pgadmin-hackers
FYI:

Found a bug in frmIndexcheck.xrc, the class wxCheckList was renamed
wxCheckListBox in wxWidgets 2.6, so it works in 2.6 with compatible
support for 2.4 on, but under 2.8 by default 2.4 compatible
support is off. So, if this XRC is still being used it will have a
runtime error.

Tim S

Index: pgadmin/ui/frmIndexcheck.xrc
===================================================================
--- pgadmin/ui/frmIndexcheck.xrc    (revision 6050)
+++ pgadmin/ui/frmIndexcheck.xrc    (working copy)
@@ -8,7 +8,7 @@
       <object class="notebookpage">
         <label>Selection</label>
         <object class="wxPanel" name="pnlSelection">
-          <object class="wxCheckList" name="chkList">
+          <object class="wxCheckListBox" name="chkList">
             <content/>
             <pos>2,3d</pos>
             <size>183,234d</size>



pgadmin-hackers by date:

Previous
From: Dave Page
Date:
Subject: Re: compile problem
Next
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r6051 - trunk/pgadmin3/pgadmin/ui