Found a bug in frmIndexcheck.xrc, is it still being used?

From: Tim Stahlhut <stahta01(at)highstream(dot)net>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: Found a bug in frmIndexcheck.xrc, is it still being used?
Date: 2007-03-13 16:00:29
Message-ID: et6hqt$t8s$1@sea.gmane.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: 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>

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2007-03-13 16:09:34 SVN Commit by dpage: r6051 - trunk/pgadmin3/pgadmin/ui
Previous Message Dave Page 2007-03-13 15:42:20 Re: compile problem