akshayrkulkarni / gui2exe

Automatically exported from code.google.com/p/gui2exe
0 stars 0 forks source link

Include wxversion to be compatible with multi-wx platform #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I have two different versions of wx installed on my system: 2.6 and 2.8.
Unfortunately 2.6 is used by default. To avoid this, the following do the job:
import wxversion
wxversion.select('2.8')

Place it just before wx import

Original issue reported on code.google.com by chrystal...@free.fr on 16 Oct 2009 at 9:17

GoogleCodeExporter commented 9 years ago
Fixed in SVN (using wxversion.ensureMinimal("2.8") instead of wxversion. 
select("2.8")), thank you for the bug report.

Original comment by andrea.gavana@gmail.com on 17 Oct 2009 at 7:00